Stop ignoring chattr test failures.

The tests should be fixed now.

Test: treehugger
Change-Id: I118c4cabd0e350bd4374191cfe1edb03c51eb7c8
This commit is contained in:
Elliott Hughes 2020-02-28 17:50:02 -08:00
parent 2cb5869e2e
commit ad17340170
2 changed files with 2 additions and 7 deletions

View File

@ -62,12 +62,7 @@ test_toy() {
elif [ "$non_toy" = "true" ]; then
non_toy_failures="$non_toy_failures $toy"
else
# The chattr tests are currently broken on cuttlefish. Working on it...
if [[ "$toy" = "chattr" ]]; then
non_toy_failures="$non_toy_failures $toy"
else
failures="$failures $toy"
fi
failures="$failures $toy"
fi
}

View File

@ -169,7 +169,7 @@ testing "subshell exit err" '(exit 42); echo $?' "42\n" "" ""
# Same thing twice, but how do we cmp if exec exited?
#testing 'exec and $$' testing 'echo $$;exec readlink /proc/self'
X="$(which readlink)"
X="$(realpath $(which readlink))"
testing "exec in paren" \
'(exec readlink /proc/self/exe);echo hello' "$X\nhello\n" "" ""
testing "exec in brackets" \