From 736fd1a7e4083153ccc4cf360b44dd07b6788494 Mon Sep 17 00:00:00 2001 From: James Ward Date: Mon, 23 Jan 2023 17:13:37 +0000 Subject: Create MI tests for Type Conversion: CAST * Add exclusion regex's to conformance generation Signed-off-by: James Ward Change-Id: I15bef7451efd5662065060242d35bd7fa3381487 --- verif/conformance/tosa_verif_conformance_generator.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'verif/conformance/tosa_verif_conformance_generator.py') diff --git a/verif/conformance/tosa_verif_conformance_generator.py b/verif/conformance/tosa_verif_conformance_generator.py index 817b242..4971fb0 100644 --- a/verif/conformance/tosa_verif_conformance_generator.py +++ b/verif/conformance/tosa_verif_conformance_generator.py @@ -34,13 +34,11 @@ PROFILE_OPS_INFO = { "tosa-bi": { "operator_test_params": "tosa_base_profile_ops_info.json", "framework_tests": "tosa_base_profile_framework_ops_info.json", - "exclude_types": [], }, "tosa-mi": { # Note: This is just the extra tests not in the base profile! "operator_test_params": "tosa_main_profile_ops_info.json", "framework_tests": "tosa_main_profile_framework_ops_info.json", - "exclude_types": [], }, } PROFILES_ALL = "all" @@ -164,7 +162,6 @@ def build_op_tests(args, profile, operator, test_params): def _check_to_include_test(profile, test_name, exclude_negative_tests=False): """Check test name for exclusions, return False to indicate excluded.""" excludes = ["ERRORIF"] if exclude_negative_tests else [] - excludes.extend(PROFILE_OPS_INFO[profile]["exclude_types"]) for exclusion in excludes: if f"_{exclusion}_" in test_name: @@ -338,7 +335,6 @@ def get_op_tests_selection( op_build_dir, op_params, negative, - exclude_types=PROFILE_OPS_INFO[profile]["exclude_types"], ) except KeyError: logger.error(f"{operator} operator is not supported by test_select") -- cgit v1.2.1