From c44015b2318b28522ed9dd627c7499eae8970a08 Mon Sep 17 00:00:00 2001 From: Sean Gillespie Date: Fri, 15 Apr 2016 13:44:12 -0700 Subject: [PATCH] Fix a difference in passing the sequential parameter between Bash and Batch Commit migrated from https://github.com/dotnet/coreclr/commit/9530cdd3a61f9eb15a97e8f0888be12e0390aa99 --- 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 a02b9c8..0e9b28f 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1394,7 +1394,7 @@ combinedScenarios.each { scenario -> if (scenario == 'longgc') { // Long GC tests behave very poorly when they are not // the only test running (many of them allocate until OOM). - sequentialString = 'sequential' + sequentialString = '--sequential' // Long GC tests all exist in the ignore list because // they can't run during normal test runs. This is not -- 2.7.4