mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-08 21:25:32 +02:00
Do the default func test last so we can see what the failure is on more explicitly
This commit is contained in:
@@ -293,11 +293,12 @@ class TestParser(BaseTest):
|
||||
|
||||
def test(buf, a, b, align_offset=0):
|
||||
a, b = ord(a), ord(b)
|
||||
sizes = [0]
|
||||
sizes = []
|
||||
if has_sse4_2:
|
||||
sizes.append(2)
|
||||
if has_avx2:
|
||||
sizes.append(3)
|
||||
sizes.append(0)
|
||||
expected = test_find_either_of_two_bytes(buf, a, b, 1)
|
||||
|
||||
for sz in sizes:
|
||||
|
||||
Reference in New Issue
Block a user