diff options
author | Sergey Andreenko <seandree@microsoft.com> | 2019-02-28 18:31:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 18:31:44 -0800 |
commit | 557eac638356ff47af7b92c9f349931eed5e0891 (patch) | |
tree | 63edcec9096098dce6ebdf0f761d13273f3cd9ec /tests | |
parent | d06becc2658b2130c152d0f6c34a358441dd0f8e (diff) | |
download | coreclr-557eac638356ff47af7b92c9f349931eed5e0891.tar.gz coreclr-557eac638356ff47af7b92c9f349931eed5e0891.tar.bz2 coreclr-557eac638356ff47af7b92c9f349931eed5e0891.zip |
Fix CoreFX build scripts2. (#22931)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/scripts/run-corefx-tests.py | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/tests/scripts/run-corefx-tests.py b/tests/scripts/run-corefx-tests.py index 6d112d69ac..2dac80a856 100644 --- a/tests/scripts/run-corefx-tests.py +++ b/tests/scripts/run-corefx-tests.py @@ -288,16 +288,10 @@ def main(args): # Gather up some arguments to pass to the different build scripts. - config_args = '-c Release /p:OSGroup=%s /p:ArchGroup=%s' % (clr_os, arch) - - if Is_windows: - config_args += ' -restore -build -buildtests' - if not no_run_tests: - config_args += ' -test' - else: - config_args += ' --restore --build --buildtests' - if not no_run_tests: - config_args += ' --test' + config_args = '-restore -build -buildtests -configuration Release -os %s -arch %s' % (clr_os, arch) + + if not no_run_tests: + config_args += ' -test' build_args = config_args |