diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-11-17 12:25:54 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-11-17 12:25:54 +0100 |
commit | a36db78598cf9a2603db3406a8a9ac3e9a71bf0e (patch) | |
tree | aed2947afaafd3ef3bf5f10ac23eaa5baa4094ef /gl | |
parent | d297478c2603e8ca9dd75daaa50da6ba0b1ee8cf (diff) | |
download | gnutls-a36db78598cf9a2603db3406a8a9ac3e9a71bf0e.tar.gz |
Work around reported bug in gnulib self-tests.
Diffstat (limited to 'gl')
-rw-r--r-- | gl/override/tests/test-select-out.sh.diff | 15 | ||||
-rwxr-xr-x | gl/tests/test-select-out.sh | 6 |
2 files changed, 18 insertions, 3 deletions
diff --git a/gl/override/tests/test-select-out.sh.diff b/gl/override/tests/test-select-out.sh.diff new file mode 100644 index 0000000000..d6da59cbe2 --- /dev/null +++ b/gl/override/tests/test-select-out.sh.diff @@ -0,0 +1,15 @@ +--- gl/tests/test-select-out.sh.orig 2008-11-17 12:24:46.000000000 +0100 ++++ gl/tests/test-select-out.sh 2008-11-17 12:24:53.000000000 +0100 +@@ -14,9 +14,9 @@ + + # Pipes. + +-rm -f t-select-out.tmp +-( { echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | { sleep 1; cat; } ) > /dev/null +-test `cat t-select-out.tmp` = "0" || exit 1 ++#rm -f t-select-out.tmp ++#( { echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | { sleep 1; cat; } ) > /dev/null ++#test `cat t-select-out.tmp` = "0" || exit 1 + + rm -f t-select-out.tmp + ( { sleep 1; echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | cat) > /dev/null diff --git a/gl/tests/test-select-out.sh b/gl/tests/test-select-out.sh index 556aae7b45..488dccd0c8 100755 --- a/gl/tests/test-select-out.sh +++ b/gl/tests/test-select-out.sh @@ -14,9 +14,9 @@ test `cat t-select-out.tmp` = "1" || exit 1 # Pipes. -rm -f t-select-out.tmp -( { echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | { sleep 1; cat; } ) > /dev/null -test `cat t-select-out.tmp` = "0" || exit 1 +#rm -f t-select-out.tmp +#( { echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | { sleep 1; cat; } ) > /dev/null +#test `cat t-select-out.tmp` = "0" || exit 1 rm -f t-select-out.tmp ( { sleep 1; echo abc; ./test-select-fd${EXEEXT} w 1 t-select-out.tmp; } | cat) > /dev/null |