aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-01-28 17:27:17 -0800
committerElliott Hughes <enh@google.com>2020-01-28 17:27:17 -0800
commit6e2accaa6b1a3a91d9c99897ec8d7fa53c7f832f (patch)
tree52c23a1b7ffb93a1f644f3a226cd319bbb839146
parentc66260f6bd8f75f9191783b41c3cfb17f15bb552 (diff)
downloadtoybox-6e2accaa6b1a3a91d9c99897ec8d7fa53c7f832f.tar.gz
Ignore chattr tests while I work on fixing them.
Bug: http://b/147769529 Test: treehugger Change-Id: I900a7bae7e4930aca3b8626fdcfbd9a54396098d
-rwxr-xr-xrun-tests-on-android.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/run-tests-on-android.sh b/run-tests-on-android.sh
index d85cca31..0fedce48 100755
--- a/run-tests-on-android.sh
+++ b/run-tests-on-android.sh
@@ -62,7 +62,12 @@ test_toy() {
elif [ "$non_toy" = "true" ]; then
non_toy_failures="$non_toy_failures $toy"
else
- failures="$failures $toy"
+ # The chattr tests are currently broken. Working on it...
+ if [ "$toy" = "chattr" ]; then
+ non_toy_failures="$non_toy_failures $toy"
+ else
+ failures="$failures $toy"
+ fi
fi
}