summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/ifupdown/files/tweak-ptest-script.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-core/ifupdown/files/tweak-ptest-script.patch')
-rw-r--r--meta/recipes-core/ifupdown/files/tweak-ptest-script.patch49
1 files changed, 49 insertions, 0 deletions
diff --git a/meta/recipes-core/ifupdown/files/tweak-ptest-script.patch b/meta/recipes-core/ifupdown/files/tweak-ptest-script.patch
new file mode 100644
index 0000000000..d7600cf243
--- /dev/null
+++ b/meta/recipes-core/ifupdown/files/tweak-ptest-script.patch
@@ -0,0 +1,49 @@
1Tweak tests of ifupdown to make it work with oe-core ptest framework.
2
3Upstream-Status: Inappropriate [oe-core specific]
4
5Signed-off-by: Kai Kang <kai.kang@windriver.com>
6
7diff --git a/tests/testbuild-linux b/tests/testbuild-linux
8index 1181ea0..d5c1814 100755
9--- a/tests/testbuild-linux
10+++ b/tests/testbuild-linux
11@@ -1,6 +1,7 @@
12 #!/bin/sh -e
13
14-dir=tests/linux
15+curdir=$(dirname `readlink -f $0`)
16+dir=$curdir/linux
17
18 result=true
19 for test in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do
20@@ -12,7 +13,7 @@ for test in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do
21 echo "Testcase $test: $args"
22
23 exitcode=0
24- ./ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $args \
25+ ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $args \
26 >$dir/up-res-out.$test 2>$dir/up-res-err.$test || exitcode=$?
27
28 (echo "exit code: $exitcode";
29@@ -20,7 +21,7 @@ for test in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do
30 echo "====stderr===="; cat $dir/up-res-err.$test) > $dir/up-res.$test
31
32 exitcode=0
33- ./ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $args \
34+ ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $args \
35 >$dir/down-res-out.$test 2>$dir/down-res-err.$test || exitcode=$?
36
37 (echo "exit code: $exitcode";
38@@ -28,9 +29,9 @@ for test in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18; do
39 echo "====stderr===="; cat $dir/down-res-err.$test) > $dir/down-res.$test
40
41 if diff -ub $dir/up.$test $dir/up-res.$test && diff -ub $dir/down.$test $dir/down-res.$test; then
42- echo "(okay)"
43+ echo "PASS: $test"
44 else
45- echo "(failed)"
46+ echo "FAIL: $test"
47 result=false
48 fi
49 echo "=========="