Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Groovy is really confusing
Browse files Browse the repository at this point in the history
  • Loading branch information
swgillespie committed Apr 28, 2017
1 parent e6c9964 commit 68eb4f1
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2480,22 +2480,24 @@ combinedScenarios.each { scenario ->
${testEnvOpt} ${serverGCString} ${gcstressStr} ${crossgenStr} ${runcrossgentestsStr} ${runjitstressStr} \\
${runjitstressregsStr} ${runjitmioptsStr} ${runjitforcerelocsStr} ${runjitdisasmStr} ${runilasmroundtripStr} \\
${illinkStr} ${sequentialString} ${playlistString} ${layoutOnlyStr}""")

if (scenario == 'gc_reliability_framework') {
// runtest.sh doesn't actually execute the reliability framework - do it here.
if (serverGCString != '') {
shell("export COMPlus_gcServer=1")
}

shell("./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")
}
}
}
}

if (scenario == 'gc_reliability_framework') {
// runtest.sh doesn't actually execute the reliability framework - do it here.
if (serverGCString != '') {
shell("export COMPlus_gcServer=1")
}

shell("./tests/scripts/run-gc-reliability-framework.sh ${architecture} ${configuration}")

// save the RF's standard out
Utilities.addArchival(newJob, 'stdout.txt')
// save the RF's log directory
Utilities.addArchival(newJob, 'Logs/**')
if (scenario == 'gc_reliability_framework')
{
// Both of these are emitted by the RF
Utilities.addArchival(newJob, "stdout.txt")
Utilities.addArchival(newJob, "Logs/**")
}

if (scenario == 'coverage') {
Expand Down

0 comments on commit 68eb4f1

Please sign in to comment.