Skip to content

Commit

Permalink
Temporarily disable scan tests, re-enable tests on gfx11xx
Browse files Browse the repository at this point in the history
Remove code that excludes gfx11xx tests on Jenkins, since they work there now.
Add a temporary exclusion for test_thrust_scan, which needs a compiler fix.
  • Loading branch information
umfranzw committed Aug 20, 2024
1 parent de96fa8 commit 8b6d20d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .jenkins/common.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,8 @@ def runTestCommand (platform, project)

def testCommand = "ctest --output-on-failure"
def hmmTestCommand = ''
def excludeRegex = 'reduce_by_key.hip'

if (platform.jenkinsLabel.contains('gfx11'))
{
excludeRegex = /(reduce_by_key.hip|partition.hip|sort.hip|sort_by_key.hip|stable_sort_by_key.hip|stable_sort.hip|async_copy.hip|async_reduce.hip|async_scan.hip|async_sort.hip|async_transform.hip)/
}
// Note: temporarily disable scan tests below while waiting for a compiler fix
def excludeRegex = /(reduce_by_key.hip|scan)/
testCommandExclude = "--exclude-regex \"${excludeRegex}\""

if (platform.jenkinsLabel.contains('gfx90a'))
Expand Down

0 comments on commit 8b6d20d

Please sign in to comment.