From 72dcab775c7a84037135bf365086ca976f3220ef Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Mon, 30 Oct 2023 10:28:21 +0000 Subject: Allow more integer types in result check. Added int8, int16, uint8 and uint16. Signed-off-by: Jeremy Johnson Change-Id: I6b1174aa7369c34a613b322c4b05bf4fc586ee6e --- verif/tests/test_tosa_result_checker.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'verif/tests/test_tosa_result_checker.py') diff --git a/verif/tests/test_tosa_result_checker.py b/verif/tests/test_tosa_result_checker.py index d78d158..f9bda39 100644 --- a/verif/tests/test_tosa_result_checker.py +++ b/verif/tests/test_tosa_result_checker.py @@ -32,12 +32,12 @@ def _delete_data_file(file: Path): @pytest.mark.parametrize( "data_type,expected", [ - (np.int8, trc.TestResult.MISMATCH), - (np.int16, trc.TestResult.MISMATCH), + (np.int8, trc.TestResult.PASS), + (np.int16, trc.TestResult.PASS), (np.int32, trc.TestResult.PASS), (np.int64, trc.TestResult.PASS), - (np.uint8, trc.TestResult.MISMATCH), - (np.uint16, trc.TestResult.MISMATCH), + (np.uint8, trc.TestResult.PASS), + (np.uint16, trc.TestResult.PASS), (np.uint32, trc.TestResult.MISMATCH), (np.uint64, trc.TestResult.MISMATCH), (np.float16, trc.TestResult.PASS), -- cgit v1.2.1