diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-09-07 17:34:58 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-09-07 17:34:58 +0200 |
commit | 0d7dfa9012d01159c371bf041bf53afe0780df9f (patch) | |
tree | 7f3899298fef407030c7c05d3d772fe5aa033239 | |
parent | e53c7dbafc78948e5c0d8d8ccb0bdcd9f936c62e (diff) |
ash: support testsuite for !FEATURE_SUID_CONFIG_QUIET configs
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | shell/ash_test/run-all | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash_test/run-all b/shell/ash_test/run-all index caf033577..b9f5ee788 100755 --- a/shell/ash_test/run-all +++ b/shell/ash_test/run-all @@ -61,7 +61,8 @@ do_test() # echo Running test: "$x" echo -n "$1/$x:" { - "$THIS_SH" "./$x" >"$name.xx" 2>&1 + "$THIS_SH" "./$x" 2>&1 | \ + grep -va "^ash: using fallback suid method$" >"$name.xx" diff -u "$name.xx" "$name.right" >"$TOPDIR/$noslash-$x.fail" \ && rm -f "$name.xx" "$TOPDIR/$noslash-$x.fail" } && echo " ok" || echo " fail" |