summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2018-02-08 08:31:09 -0800
committerBruce Forstall <brucefo@microsoft.com>2018-02-08 08:31:09 -0800
commit43af5e0119df19c3c72ffc3c403b02f54aa50dc4 (patch)
tree684324871b723d518c736a5089e3f0f2f4348f65 /netci.groovy
parent7b169b9a7ed2e0e1eeb668e9f1c2a049ec34ca66 (diff)
downloadcoreclr-43af5e0119df19c3c72ffc3c403b02f54aa50dc4.tar.gz
coreclr-43af5e0119df19c3c72ffc3c403b02f54aa50dc4.tar.bz2
coreclr-43af5e0119df19c3c72ffc3c403b02f54aa50dc4.zip
Make paths used by ARM corefx test script absolute
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index a94dacd34a..7b98b0c6b5 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2943,8 +2943,8 @@ Constants.allScenarios.each { scenario ->
batchFile("powershell -NoProfile -Command \"Add-Type -Assembly 'System.IO.Compression.FileSystem'; [System.IO.Compression.ZipFile]::ExtractToDirectory('_\\fx\\fxtests.zip', '_\\fx\\bin\\tests')")
// Add the script to run the corefx tests
- def corefx_runtime_path = "_\\fx\\bin\\testhost\\netcoreapp-Windows_NT-Release-arm"
- def corefx_tests_dir = "_\\fx\\bin\\tests"
+ def corefx_runtime_path = "%WORKSPACE%\\_\\fx\\bin\\testhost\\netcoreapp-Windows_NT-Release-arm"
+ def corefx_tests_dir = "%WORKSPACE%\\_\\fx\\bin\\tests"
def corefx_exclusion_file = "%WORKSPACE%\\tests\\arm\\corefx_test_exclusions.txt"
batchFile("call %WORKSPACE%\\tests\\scripts\\run-corefx-tests.bat ${corefx_runtime_path} ${corefx_tests_dir} ${corefx_exclusion_file}")