summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2019-04-24 10:21:00 -0700
committerBruce Forstall <brucefo@microsoft.com>2019-04-24 10:21:00 -0700
commitf3db0557c898c346c3f48da825fc2c8c522e5063 (patch)
treee2e99648e23aa73a5679d10936d825cc09653c70
parent6fd5d28a958d67ed6e749538be4c61d71a1dae25 (diff)
downloadcoreclr-f3db0557c898c346c3f48da825fc2c8c522e5063.tar.gz
coreclr-f3db0557c898c346c3f48da825fc2c8c522e5063.tar.bz2
coreclr-f3db0557c898c346c3f48da825fc2c8c522e5063.zip
Remove extraneous percent character in Linux/x64 corefx testing command
-rwxr-xr-xnetci.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/netci.groovy b/netci.groovy
index fde15f9560..59ee4a690e 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2404,7 +2404,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR
def workspaceRelativeFxRoot = "_/fx"
def absoluteFxRoot = "\$WORKSPACE/${workspaceRelativeFxRoot}"
def fxBranch = getFxBranch(branch)
- def exclusionRspPath = "\$WORKSPACE%/tests/scripts/run-corefx-tests-exclusions.txt"
+ def exclusionRspPath = "\$WORKSPACE/tests/scripts/run-corefx-tests-exclusions.txt"
buildCommands += "python -u \$WORKSPACE/tests/scripts/run-corefx-tests.py -arch ${architecture} -ci_arch ${architecture} -build_type ${configuration} -fx_root ${absoluteFxRoot} -fx_branch ${fxBranch} -env_script ${scriptFileName} -exclusion_rsp_file ${exclusionRspPath}"