aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2016-09-21 15:37:43 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2016-09-21 15:37:43 +0530
commit26669cb1779e5d8d45154ec492a2945935f87a25 (patch)
tree523e8b823604870531a8527b04df5f3f8f0aa188
parent7afb6be24276ef8d24fa14afad0cb701b7c61ff3 (diff)
downloadart-build-scripts-26669cb1779e5d8d45154ec492a2945935f87a25.tar.gz
vixl: presubmit test: pass additional argument for native testing
Change-Id: I55a3c888a5a2f60005fad80c2ea038e438577f35 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
-rwxr-xr-xjenkins/presubmit_vixl_test.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/jenkins/presubmit_vixl_test.sh b/jenkins/presubmit_vixl_test.sh
index f4c033f3..450b5fe3 100755
--- a/jenkins/presubmit_vixl_test.sh
+++ b/jenkins/presubmit_vixl_test.sh
@@ -74,7 +74,11 @@ main() {
update_git_repo "${git_repo}" "${git_co_dir}" "${GERRIT_BRANCH}"
safe cd "${git_co_dir}"
fetch_apply_gerrit_refspec "${gerrit_url}" "${GERRIT_REFSPEC}"
- ./tools/test.py --fail-early
+ arch=$(uname -m)
+ if [[ $arch == "aarch64" ]]; then
+ params="--nolint --noclang-format"
+ fi
+ ./tools/test.py --fail-early "${params}"
local -r ret=$?
stop_timer "${vixl_timer_name}"