From 22750d3b86e0b65d2d7c0ee128b71bc683dcc648 Mon Sep 17 00:00:00 2001 From: Sean Gillespie Date: Mon, 20 Jun 2016 13:11:18 -0700 Subject: [PATCH] Switch to double-quotes for interpolated string Commit migrated from https://github.com/dotnet/coreclr/commit/dedf88fadb44e046cc570e76c5c78fac70681e21 --- 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 bb2a669..bef7bd5 100755 --- a/src/coreclr/netci.groovy +++ b/src/coreclr/netci.groovy @@ -1523,7 +1523,7 @@ combinedScenarios.each { scenario -> } if (isLongGc(scenario)) { - gcTestArguments = '${scenario} sequential' + gcTestArguments = "${scenario} sequential" } runtestArguments = "${lowerConfiguration} ${arch} ${gcstressStr} ${crossgenStr} ${runcrossgentestsStr} ${runjitstressStr} ${runjitstressregsStr} ${runjitmioptsStr} ${runjitforcerelocsStr} ${gcTestArguments}" -- 2.7.4