aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-03 16:07:15 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-03-03 16:07:15 +0000
commit61d29f95afddd90bb5dc7c38ca02c9452a8e69d3 (patch)
tree4dc72a4a153486d86e427ac07b3eeb38b47e3eb3
parent283d559364cead8a3c53670e0353fd1e1c333de6 (diff)
parentf7dea2434e4123d2f864e444e642e4cc87880db4 (diff)
downloadtoybox-61d29f95afddd90bb5dc7c38ca02c9452a8e69d3.tar.gz
Stop ignoring chattr test failures. am: ad17340170 am: f7dea2434e
Change-Id: Id0b24bc57a01419de91e22f867491d67285f9bd3
-rwxr-xr-xrun-tests-on-android.sh7
-rwxr-xr-xtests/sh.test2
2 files changed, 2 insertions, 7 deletions
diff --git a/run-tests-on-android.sh b/run-tests-on-android.sh
index 744fc8b4..d85cca31 100755
--- a/run-tests-on-android.sh
+++ b/run-tests-on-android.sh
@@ -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
}
diff --git a/tests/sh.test b/tests/sh.test
index 6a121ce2..dd18af71 100755
--- a/tests/sh.test
+++ b/tests/sh.test
@@ -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" \