Skip to content
Snippets Groups Projects
Commit 6be5b89f authored by Markus Holzer's avatar Markus Holzer
Browse files

Fix small test case

parent b17e7428
No related branches found
No related tags found
1 merge request!275WIP: Revamp the type system
...@@ -128,7 +128,7 @@ def test_cacheline_size(instruction_set): ...@@ -128,7 +128,7 @@ def test_cacheline_size(instruction_set):
@pytest.mark.parametrize('instruction_set', @pytest.mark.parametrize('instruction_set',
sorted(set(supported_instruction_sets) - {test_vectorization.instruction_set})) sorted(set(supported_instruction_sets) - {test_vectorization.instruction_set}))
@pytest.mark.parametrize('function', @pytest.mark.parametrize('function',
[f for f in test_vectorization.__dict__ if f.startswith('test_') and f != 'test_hardware_query']) [f for f in test_vectorization.__dict__ if f.startswith('test_') and f not in ['test_hardware_query', 'test_aligned_and_nt_stores']])
def test_vectorization_other(instruction_set, function): def test_vectorization_other(instruction_set, function):
test_vectorization.__dict__[function](instruction_set) test_vectorization.__dict__[function](instruction_set)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment