aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2016-10-26 13:45:04 -0700
committerGravatar murgatroid99 <mlumish@google.com>2016-10-26 13:45:04 -0700
commit5a3f862153cfbf0e0f49f17e598d8e70522bbe66 (patch)
treea06242360db06f062fe1ccf192fbf1c005b89c05 /tools
parent5b36156d2b0d518b96816377c5e8332c72495136 (diff)
Add missing comma in run_tests.py
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 55092377a9..cd49dfa907 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -933,7 +933,7 @@ argp.add_argument('--compiler',
'clang3.4', 'clang3.5', 'clang3.6', 'clang3.7',
'vs2010', 'vs2013', 'vs2015',
'python2.7', 'python3.4',
- 'node0.12', 'node4', 'node5', 'node6', 'node7'
+ 'node0.12', 'node4', 'node5', 'node6', 'node7',
'coreclr'],
default='default',
help='Selects compiler to use. Allowed values depend on the platform and language.')