aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2016-02-03 14:14:39 -0800
committerDan Albert <danalbert@google.com>2016-02-03 14:14:39 -0800
commit8c183ace355e70a63a3da30edd42d673d565470b (patch)
tree0f58190c519e0f798ef4b9f4f749e3822a14c119 /tests
parentb8a42f753655e421914af3c623d279f304610d15 (diff)
downloadndk-8c183ace355e70a63a3da30edd42d673d565470b.tar.gz
Default to testing with clang.
GCC is deprecated, so why is it still the default testing toolchain? Change-Id: I6540370e5917b5b7e74f2869b4ab8d177e4ef68f
Diffstat (limited to 'tests')
-rw-r--r--tests/run-all.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-all.py b/tests/run-all.py
index d694d0073..1f5ef0881 100644
--- a/tests/run-all.py
+++ b/tests/run-all.py
@@ -210,8 +210,8 @@ class ArgParser(argparse.ArgumentParser):
help=('Run tests against the specified platform version. Defaults '
'to the contents of APP_PLATFORM in jni/Application.mk'))
self.add_argument(
- '--toolchain', default='4.9', choices=('4.9', 'clang'),
- help='Toolchain for building tests. Defaults to gcc-4.9.')
+ '--toolchain', default='clang', choices=('4.9', 'clang'),
+ help='Toolchain for building tests. Defaults to clang.')
self.add_argument(
'--show-commands', action='store_true',