diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-03 19:52:47 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-08-03 19:52:47 +0200 |
commit | 19c9f31af17f2c34e93c9c322b5c546ffbcda6ad (patch) | |
tree | 589df9d37647d8a8b26a1737c2b21f76f64fd1d6 /shell/hush_test/run-all | |
parent | 72d725d7cc6d5cd8ad6c69f7efb3b7046931395b (diff) | |
download | busybox-19c9f31af17f2c34e93c9c322b5c546ffbcda6ad.tar.gz |
nofork: fix a bug uncovered by hush testsuite (forgotten fflush)
function old new delta
run_nofork_applet 280 287 +7
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/run-all')
-rwxr-xr-x | shell/hush_test/run-all | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush_test/run-all b/shell/hush_test/run-all index 1dd0edc39..3fbc7c531 100755 --- a/shell/hush_test/run-all +++ b/shell/hush_test/run-all @@ -80,7 +80,7 @@ do_test() case $? in 0) echo " ok";; 77) echo " skip (feature disabled)";; - *) echo " fail"; tret=1;; + *) echo " fail ($?)"; tret=1;; esac done exit ${tret} |