From 48ae179c5ae9ea68ee2c69c6d407e7fa1c4665ba Mon Sep 17 00:00:00 2001 From: Russ Keldorph Date: Tue, 2 May 2017 20:59:24 -0700 Subject: [PATCH] Revert "[ARM32/Linux] Copy tests.zip only for CI test and use x86 unittest" This reverts commit dotnet/coreclr@2ec8b5c2cc6d68ca02eb743e679997a8f11c90aa. Commit migrated from https://github.com/dotnet/coreclr/commit/01fbb88b8c3fc2bcfa06508c5d18567026ccdd26 --- src/coreclr/netci.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/coreclr/netci.groovy b/src/coreclr/netci.groovy index c7734a9..94d7ad5 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1634,7 +1634,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR } // Unzip the Windows test binaries first. Exit with 0 - buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x86.${configuration} || exit 0" + buildCommands += "unzip -q -o ./bin/tests/tests.zip -d ./bin/tests/Windows_NT.x64.${configuration} || exit 0" // Unpack the corefx binaries buildCommands += "mkdir ./bin/CoreFxBinDir" @@ -1654,7 +1654,7 @@ def static calculateBuildCommands(def newJob, def scenario, def branch, def isPR --${arm_abi} \\ --linuxCodeName=${linuxCodeName} \\ --buildConfig=${lowerConfiguration} \\ - --testRootDir=./bin/tests/Windows_NT.x86.${configuration} \\ + --testRootDir=./bin/tests/Windows_NT.x64.${configuration} \\ --coreFxBinDir=./bin/CoreFxBinDir \\ --testDirFile=./tests/testsRunningInsideARM.txt""" @@ -1963,7 +1963,7 @@ combinedScenarios.each { scenario -> def WindowTestsName = projectFolder + '/' + Utilities.getFullJobName(project, getJobName(lowerConfiguration, - 'x86' , + 'x64' , 'windows_nt', 'default', true), @@ -1971,9 +1971,9 @@ combinedScenarios.each { scenario -> def corefxFolder = Utilities.getFolderName('dotnet/corefx') + '/' + Utilities.getFolderName(branch) - // Copy the Windows test binaries + // Copy the Windows test binaries and the Corefx build binaries copyArtifacts(WindowTestsName) { - includePatterns('bin/tests/tests.zip') + excludePatterns('**/testResults.xml', '**/*.ni.dll') buildSelector { latestSuccessful(true) } -- 2.7.4