summaryrefslogtreecommitdiff
path: root/tests/scripts
diff options
context:
space:
mode:
authorNoah Falk <noahfalk@users.noreply.github.com>2017-08-27 15:46:53 -0700
committerGitHub <noreply@github.com>2017-08-27 15:46:53 -0700
commit79825ebc61479687e70b5d1041553d28756d1668 (patch)
treea2d6767847c9c802e4eed87e3bde006779fdd240 /tests/scripts
parent1596d06b6180a58782cf831b435dbe0046b5be9c (diff)
parent0f58337cbdc1a890c3ab15d0aae6ba306ad41923 (diff)
downloadcoreclr-79825ebc61479687e70b5d1041553d28756d1668.tar.gz
coreclr-79825ebc61479687e70b5d1041553d28756d1668.tar.bz2
coreclr-79825ebc61479687e70b5d1041553d28756d1668.zip
Merge pull request #13581 from noahfalk/fix_corefx_testing
Fix running corefx tests
Diffstat (limited to 'tests/scripts')
-rw-r--r--tests/scripts/run-corefx-tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/scripts/run-corefx-tests.py b/tests/scripts/run-corefx-tests.py
index 2340a64d00..9b3e06b433 100644
--- a/tests/scripts/run-corefx-tests.py
+++ b/tests/scripts/run-corefx-tests.py
@@ -270,7 +270,7 @@ def main(args):
if Is_windows:
command = 'build-tests.cmd'
if env_script is not None:
- command = ('cmd /c %s&&' % env_script) + command
+ command = ('cmd /c \"%s&&' % env_script) + command + '\"'
else:
command = './build-tests.sh'
if env_script is not None: