diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2016-09-08 16:21:16 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2016-09-15 18:18:24 +0200 |
commit | 50e98574b28af990811f50c065c169ea97efe3b9 (patch) | |
tree | 3bb8217140d4fc2348592213397e0ebec3c061cd /tools/run_tests | |
parent | 19e04b538876cb381cae842ad1b906023c7ce786 (diff) |
update path to C# test build by dotnet cli
Diffstat (limited to 'tools/run_tests')
-rw-r--r-- | tools/run_tests/build_csharp_coreclr.bat | 2 | ||||
-rwxr-xr-x | tools/run_tests/run_tests.py | 12 |
2 files changed, 4 insertions, 10 deletions
diff --git a/tools/run_tests/build_csharp_coreclr.bat b/tools/run_tests/build_csharp_coreclr.bat index cead6d0e02..b6e3ccbd2b 100644 --- a/tools/run_tests/build_csharp_coreclr.bat +++ b/tools/run_tests/build_csharp_coreclr.bat @@ -33,7 +33,7 @@ cd /d %~dp0\..\..\src\csharp dotnet restore . || goto :error -dotnet build -f netstandard1.5 --configuration %MSBUILD_CONFIG% "**/project.json" || goto :error +dotnet build --configuration %MSBUILD_CONFIG% "**/project.json" || goto :error endlocal diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 5665954a82..3ccba877c9 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -588,15 +588,9 @@ class CSharpLanguage(object): assembly_extension = '.exe' if self.args.compiler == 'coreclr': - if self.platform == 'linux': - assembly_subdir += '/netstandard1.5/debian.8-x64' - assembly_extension = '' - elif self.platform == 'mac': - assembly_subdir += '/netstandard1.5/osx.10.11-x64' - assembly_extension = '' - else: - assembly_subdir += '/netstandard1.5/win7-x64' - runtime_cmd = [] + assembly_subdir += '/netcoreapp1.0' + runtime_cmd = ['dotnet', 'exec'] + assembly_extension = '.dll' else: nunit_args += ['--noresult', '--workers=1'] if self.platform == 'windows': |