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

Commit 766f72e

Browse files
committed
Don't run ARM/ARM64 tests marked LONG_RUNNING
These tests can time out when run with the default job timeout. So, disable them in normal runs.
1 parent 2b9e70f commit 766f72e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

netci.groovy

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2604,11 +2604,14 @@ Constants.allScenarios.each { scenario ->
26042604
addArchSpecificExclude(architecture, failTag)
26052605
addArchSpecificExclude(architecture, excludeTag)
26062606
}
2607-
26082607
else {
26092608
addExclude("pri1")
26102609
}
26112610

2611+
// Exclude any test marked LONG_RUNNING; these often exceed the standard timeout and fail as a result.
2612+
// TODO: We should create a "long running" job that runs these with a longer timeout.
2613+
addExclude("LONG_RUNNING")
2614+
26122615
smartyCommand += "/lstFile Tests.lst"
26132616

26142617
def testListArch = [

0 commit comments

Comments
 (0)