diff options
author | Jeff Hatch <jhatch@multitech.com> | 2020-06-04 14:22:33 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2020-06-04 14:22:33 -0500 |
commit | 44b321b521cf857f6cf3cd8bb7ba8baf8dae1182 (patch) | |
tree | bc36b243d8f4ef9535c7c500b9ffcb96885df61e /recipes-extended/bash/bash-4.2/test-output.patch | |
parent | 683182b8eb2fa4cee10369d068d88084864d8be9 (diff) | |
parent | 432af19f672a64228e1b70b0b25abb5a0ee7ee30 (diff) | |
download | meta-mlinux-44b321b521cf857f6cf3cd8bb7ba8baf8dae1182.tar.gz meta-mlinux-44b321b521cf857f6cf3cd8bb7ba8baf8dae1182.tar.bz2 meta-mlinux-44b321b521cf857f6cf3cd8bb7ba8baf8dae1182.zip |
Merge branch 'test-split'
Merge changes for the move to Yocto Thud
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 - |