diff options
author | Jeff Hatch <jhatch@multitech.com> | 2020-06-15 12:01:01 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2020-06-15 12:01:01 -0500 |
commit | 612ffa7c85d856c9706064e62448a3debe5c3379 (patch) | |
tree | 7ce893519ee65180783ef3c248bd04c6f3f817c5 /recipes-extended/bash/bash-4.2/test-output.patch | |
parent | 0a3f99fc26efa34e65d0105ae18888bd750e5ab6 (diff) | |
parent | a117c7a2ccc99c9903764658fc3640e06ffe4661 (diff) | |
download | meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.tar.gz meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.tar.bz2 meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.zip |
Merge branch 'udev-rules-refactoring' to better reflect architecture dependencies in architecture specific layers.
Diffstat (limited to 'recipes-extended/bash/bash-4.2/test-output.patch')
-rw-r--r-- | recipes-extended/bash/bash-4.2/test-output.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-extended/bash/bash-4.2/test-output.patch b/recipes-extended/bash/bash-4.2/test-output.patch deleted file mode 100644 index 2b09b7d..0000000 --- a/recipes-extended/bash/bash-4.2/test-output.patch +++ /dev/null @@ -1,25 +0,0 @@ -Add FAIL/PASS output to test output. - -Signed-off-by: Björn Stenberg <bjst@enea.com> -Upstream-Status: Pending ---- -diff -uNr a/tests/run-all b/tests/run-all ---- a/tests/run-all 1999-10-08 17:07:46.000000000 +0200 -+++ b/tests/run-all 2012-10-27 21:04:18.663331887 +0200 -@@ -22,7 +22,15 @@ - case $x in - $0|run-minimal|run-gprof) ;; - *.orig|*~) ;; -- *) echo $x ; sh $x ;; -+ *) echo $x -+ output=`sh $x` -+ if [ -n "$output" ]; then -+ echo "$output" -+ echo "FAIL: $x" -+ else -+ echo "PASS: $x" -+ fi -+ ;; - esac - done - |