diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-01-14 15:00:00 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-16 22:33:09 +0000 |
commit | bb0b96a586b7dd0246090108b2e8899ee203124b (patch) | |
tree | ceeea8df5e91bf79c80ae49f2347fd8a14e5da47 /meta/recipes-core | |
parent | a2a33b767857ff21a2396f5f4db39418d6e5aa45 (diff) | |
download | poky-bb0b96a586b7dd0246090108b2e8899ee203124b.tar.gz |
dbus: fix failing ptest (by disabling as it needs X)
(From OE-Core rev: ffa360990fb392a617cac100d95d2dc2712c4100)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rwxr-xr-x | meta/recipes-core/dbus/dbus/run-ptest | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-core/dbus/dbus/run-ptest b/meta/recipes-core/dbus/dbus/run-ptest index 48535e13da..d3eec08235 100755 --- a/meta/recipes-core/dbus/dbus/run-ptest +++ b/meta/recipes-core/dbus/dbus/run-ptest | |||
@@ -19,10 +19,12 @@ files=`ls test/test-*` | |||
19 | for i in $files | 19 | for i in $files |
20 | do | 20 | do |
21 | #these programs are used by testcase test-bus, don't run here | 21 | #these programs are used by testcase test-bus, don't run here |
22 | #additionally, test-names needs to be run under X | ||
22 | if [ $i = "test/test-service" ] \ | 23 | if [ $i = "test/test-service" ] \ |
23 | || [ $i = "test/test-shell-service" ] \ | 24 | || [ $i = "test/test-shell-service" ] \ |
24 | || [ $i = "test/test-segfault" ] \ | 25 | || [ $i = "test/test-segfault" ] \ |
25 | || [ $i = "test/test-bus" ] | 26 | || [ $i = "test/test-bus" ] \ |
27 | || [ $i = "test/test-names" ] | ||
26 | then | 28 | then |
27 | continue | 29 | continue |
28 | fi | 30 | fi |