diff options
author | Davis Goodin <dagood@users.noreply.github.com> | 2016-09-12 13:15:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-12 13:15:48 -0500 |
commit | 2508d5e3100039558941284651fc3181e0ff7ee3 (patch) | |
tree | 4afa5d2ae467052b223f185d464cc5111f81393a /tests/scripts | |
parent | 0df8ca52b6ccbceeb73798318681ff8ed2842b1f (diff) | |
parent | 15a733ce26712c9f7367e06a9cf7f28a68cc02bc (diff) | |
download | coreclr-2508d5e3100039558941284651fc3181e0ff7ee3.tar.gz coreclr-2508d5e3100039558941284651fc3181e0ff7ee3.tar.bz2 coreclr-2508d5e3100039558941284651fc3181e0ff7ee3.zip |
Merge pull request #6791 from dagood/upgrade-xunit-runner
Upgrade xunit runner to 2.2.0-beta2-build3300
Diffstat (limited to 'tests/scripts')
-rw-r--r-- | tests/scripts/project.json | 23 | ||||
-rw-r--r-- | tests/scripts/run-xunit-perf.cmd | 4 |
2 files changed, 15 insertions, 12 deletions
diff --git a/tests/scripts/project.json b/tests/scripts/project.json index 8601127d71..b3c3a15f62 100644 --- a/tests/scripts/project.json +++ b/tests/scripts/project.json @@ -1,15 +1,18 @@ { "dependencies": { - "Microsoft.DotNet.xunit.performance.run.core": "1.0.0-alpha-build0035", - "Microsoft.DotNet.xunit.performance.analysis.cli": "1.0.0-alpha-build0035", - "Microsoft.DotNet.xunit.performance.runner.cli": "1.0.0-alpha-build0035", - "Microsoft.DotNet.xunit.performance":"1.0.0-alpha-build0035", - "xunit.console.netcore": "1.0.3-prerelease-00607-01", - "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00629-04", + "Microsoft.DotNet.xunit.performance.run.core": "1.0.0-alpha-build0040", + "Microsoft.DotNet.xunit.performance.analysis.cli": "1.0.0-alpha-build0040", + "Microsoft.DotNet.xunit.performance.runner.cli": "1.0.0-alpha-build0040", + "Microsoft.DotNet.xunit.performance": "1.0.0-alpha-build0040", + "xunit.console.netcore": "1.0.2-prerelease-00177", + "Microsoft.DotNet.BuildTools.TestSuite": "1.0.0-prerelease-00629-04" }, "frameworks": { - "netstandard1.3":{ - "imports":["dnxcore50", "portable-net45+win8"] - } + "netstandard1.3": { + "imports": [ + "dnxcore50", + "portable-net45+win8" + ] + } } -}
\ No newline at end of file +} diff --git a/tests/scripts/run-xunit-perf.cmd b/tests/scripts/run-xunit-perf.cmd index cece893cab..605b43f2d6 100644 --- a/tests/scripts/run-xunit-perf.cmd +++ b/tests/scripts/run-xunit-perf.cmd @@ -28,8 +28,8 @@ pushd sandbox @rem stage stuff we need @rem xunit and perf -xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.runner.Windows\1.0.0-alpha-build0035\tools\* . > %RUNLOG% -xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.analysis\1.0.0-alpha-build0035\tools\* . > %RUNLOG% +xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.runner.Windows\1.0.0-alpha-build0040\tools\* . > %RUNLOG% +xcopy /sy %CORECLR_REPO%\packages\Microsoft.DotNet.xunit.performance.analysis\1.0.0-alpha-build0040\tools\* . > %RUNLOG% xcopy /sy %CORECLR_REPO%\packages\xunit.console.netcore\1.0.2-prerelease-00101\runtimes\any\native\* . > %RUNLOG% xcopy /sy %CORECLR_REPO%\bin\tests\Windows_NT.x64.Release\Tests\Core_Root\* . > %RUNLOG% |