Skip to content

Commit

Permalink
More CI logic errors fixed
Browse files Browse the repository at this point in the history
Signed-off-by: colramos-amd <colramos@amd.com>
  • Loading branch information
coleramos425 committed Oct 12, 2023
1 parent 00d57e1 commit 15112d3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/test_analyze_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_filter_metrics_mi100():
"--path",
"tests/workloads/mixbench/mi100",
"-b",
"SQ, LDS",
"SQ", "LDS",
],
):
omniperf.main()
Expand All @@ -95,7 +95,7 @@ def test_filter_metrics_inv_mi100():
"--path",
"tests/workloads/mixbench/mi100",
"-b",
"Crash, Test",
"Crash", "Test",
],
):
omniperf.main()
Expand Down Expand Up @@ -129,7 +129,7 @@ def test_filter_gpu_inv_mi100():
"--path",
"tests/workloads/mixbench/mi100",
"-k",
"99",
"200",
],
):
omniperf.main()
Expand All @@ -150,7 +150,7 @@ def test_filter_dispatch_ids_mi100():
],
):
omniperf.main()
assert e.value.code == 1
assert e.value.code == 0


def test_filter_dispatch_ids_inv_mi100():
Expand Down Expand Up @@ -423,7 +423,7 @@ def test_filter_metrics_mi200():
"--path",
"tests/workloads/mixbench/mi200",
"-b",
"SQ, LDS",
"SQ", "LDS",
],
):
omniperf.main()
Expand All @@ -440,7 +440,7 @@ def test_filter_metrics_inv_mi200():
"--path",
"tests/workloads/mixbench/mi200",
"-b",
"Crash, Test",
"Crash", "Test",
],
):
omniperf.main()
Expand Down Expand Up @@ -474,11 +474,11 @@ def test_filter_gpu_inv_mi200():
"--path",
"tests/workloads/mixbench/mi200",
"-k",
"99",
"200",
],
):
omniperf.main()
assert e.value.code == 0
assert e.value.code == 1


def test_filter_dispatch_ids_mi200():
Expand Down Expand Up @@ -512,7 +512,7 @@ def test_filter_dispatch_ids_inv_mi200():
],
):
omniperf.main()
assert e.value.code == 0
assert e.value.code == 1


def test_filter_gpu_ids_mi200():
Expand Down

0 comments on commit 15112d3

Please sign in to comment.