summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-11-28 16:30:06 -0800
committerBruce Forstall <brucefo@microsoft.com>2017-11-28 16:31:07 -0800
commitc059a5fb7ef659494956e4e157ee92a2e6ee65e2 (patch)
tree78fd87007ffb1374b62c274f202eb354db996983 /netci.groovy
parent0d694a76521b461f6fa9144ed542005c103fd1d7 (diff)
downloadcoreclr-c059a5fb7ef659494956e4e157ee92a2e6ee65e2.tar.gz
coreclr-c059a5fb7ef659494956e4e157ee92a2e6ee65e2.tar.bz2
coreclr-c059a5fb7ef659494956e4e157ee92a2e6ee65e2.zip
Fix netci.groovy braces after Linux/x86 change
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy11
1 files changed, 7 insertions, 4 deletions
diff --git a/netci.groovy b/netci.groovy
index cb0beedb7f..6909a9baf9 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -2167,14 +2167,17 @@ Constants.allScenarios.each { scenario ->
}
}
else {
+ // Non-Windows
if (architecture == 'arm64') {
if (scenario != 'default' && scenario != 'r2r' && scenario != 'gcstress0x3' && scenario != 'gcstress0xc') {
return
}
- else if (architecture == 'x86') {
- // Linux/x86 only want default test
- if (scenario != 'default') {
- return
+ }
+ else if (architecture == 'x86') {
+ // Linux/x86 only want default test
+ if (scenario != 'default') {
+ return
+ }
}
}