diff options
author | murgatroid99 <mlumish@google.com> | 2017-01-12 12:40:11 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2017-01-12 12:40:11 -0800 |
commit | c518198d9adc423442082130dace7230b5df6e50 (patch) | |
tree | 081833673779a21b476b747466922d8adf523221 /tools | |
parent | 433d3f1d42d527c646f347d9098ac486a65ad83d (diff) |
run_tests: set Node runtime variable when using default compiler
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index ab719a6727..5aae3432e1 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -377,6 +377,7 @@ class NodeLanguage(object): 'node4', 'node5', 'node6', 'node7', 'electron1.3']) if self.args.compiler == 'default': + self.runtime = 'node' self.node_version = '4' else: if self.args.compiler.startswith('electron'): |