aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerban Constantinescu <serban.constantinescu@linaro.org>2016-07-27 16:55:03 +0000
committerLinaro Android Code Review <android-review@review.linaro.org>2016-07-27 16:55:03 +0000
commit12eb5c80bdc40487a22164ee89ae6aa381021fea (patch)
tree9cab647c6f05a67f930e5fa4408c9d3056e38d8c
parenta7bfe7cf9dcb763afcfb390218bea73c6b8f02f0 (diff)
parentdc36e9b2c1691cdf3c80d46615aadc0cd9f4f8fc (diff)
downloadart-build-scripts-12eb5c80bdc40487a22164ee89ae6aa381021fea.tar.gz
Merge "Add regression tests for VIXL path"
-rwxr-xr-xtests/test_art_vixl.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/test_art_vixl.sh b/tests/test_art_vixl.sh
index 7a907aaf..932e1725 100755
--- a/tests/test_art_vixl.sh
+++ b/tests/test_art_vixl.sh
@@ -65,6 +65,15 @@ test_art_host_vixl() {
mma_build "test-art-host-vixl"
}
+# Regression tests. Added to catch issues such as those with: external/vixl 0c90fd69 .
+test_vixl_android_path() {
+ log I "Running run-vixl-tests from external/vixl"
+
+ safe cd external/vixl
+ mma_build "run-vixl-tests"
+ safe cd -
+}
+
arguments_parser() {
while getopts ":vh" opt; do
case ${opt} in
@@ -96,6 +105,7 @@ main() {
test_vixl_selftests
test_art_integration
test_art_host_vixl
+ test_vixl_android_path
stop_timer "${vixl_timer_name}"
log S "Test Finished!"