From 125a82308dd607406fd32da868d3ea8e4c9a261f Mon Sep 17 00:00:00 2001 From: Andon Andonov Date: Fri, 22 Jun 2018 15:43:05 -0700 Subject: [PATCH] Fix incorrect script path (dotnet/coreclr#18613) Commit migrated from https://github.com/dotnet/coreclr/commit/a6369dfceb2106bcf0de3d834d9a9a4dbf1459d5 --- src/coreclr/netci.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index e43a47d..41ed021 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -2220,7 +2220,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR if (doCoreFxTesting) { if (scenario == 'corefx_innerloop') { // Create CORE_ROOT and testhost - buildCommands += "tests\\build-test.cmd ${lowerConfiguration} ${arch} skipmanaged" + buildCommands += "build-test.cmd ${lowerConfiguration} ${arch} skipmanaged" buildCommands += "tests\\runtest.cmd ${runtestArguments} CoreFXTests" // Archive and process (only) the test results -- 2.7.4