diff options
author | Pádraig Brady <P@draigBrady.com> | 2009-06-27 01:48:49 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2009-06-27 02:21:43 +0100 |
commit | 1c16c9598e67e0db641af8b85abf8c009e3a9226 (patch) | |
tree | 2609c19bad26c161fb8ea9b123ceffbf03d4bd02 /tests | |
parent | 9c6c621c324148b13216cfc9bcb35e81eb151d50 (diff) | |
download | coreutils-1c16c9598e67e0db641af8b85abf8c009e3a9226.tar.xz |
stdbuf: fix to stop -i option causing an assertion
* src/stdbuf.c (main): Fix the array bounds check in the assert
* tests/misc/stdbuf: Add a test for all standard streams
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/misc/stdbuf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/misc/stdbuf b/tests/misc/stdbuf index 6f79e771f..30aa5898e 100755 --- a/tests/misc/stdbuf +++ b/tests/misc/stdbuf @@ -41,6 +41,7 @@ stdbuf -oL true || fail=1 # verify line buffered syntax stdbuf -ol true && fail=1 # Capital 'L' required stdbuf -o$SIZE_OFLOW true && fail=1 # size too large stdbuf -iL true && fail=1 # line buffering stdin disallowed +stdbuf -i0 -o0 -e0 true || fail=1 #check all files # Ensure line buffering stdout takes effect printf '1\n' > exp |