commit | 7173e9cae911a0705f7758a56e6536d2714e4530 | [log] [tgz] |
---|---|---|
author | David Brazdil <dbrazdil@google.com> | Fri Jun 12 09:47:13 2020 +0000 |
committer | David Brazdil <dbrazdil@google.com> | Fri Jun 12 09:49:06 2020 +0000 |
tree | acc3fa25cb30e0226c0fd0de9d5360bf0683fe09 | |
parent | fa880d1653b01ffa13da26e0edbc2464a1883887 [diff] |
Fix condition in kokoro/test.sh Logical OR is written as '-o' in bash single-bracket conditions, not '||'. Change-Id: Id19ec8829dda86cedfc3aeb36e0b992be600100f
diff --git a/kokoro/test.sh b/kokoro/test.sh index 58cb302..d60d589 100755 --- a/kokoro/test.sh +++ b/kokoro/test.sh
@@ -101,7 +101,7 @@ HFTEST_CPU+=(--log "$LOG_DIR_BASE") fi "${HFTEST_CPU[@]}" arch_test - if [ $USE_TFA == true || $USE_FVP == true ] + if [ $USE_TFA == true -o $USE_FVP == true ] then "${HFTEST_CPU[@]}" aarch64_test fi