Skip to content

Commit

Permalink
fix macro test
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 20, 2024
1 parent 04649d9 commit e2dae7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/test_euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ def test_compiler_macros(compiler):
assert flags[5] == compiler.startswith("EMCC")
assert flags[6] == (EXE_EXT == "x86" or expect_32)
assert flags[7] == (EXE_EXT == "x86_64" and not expect_32)
assert flags[8] == (EXE_EXT not in ("x86", "x86_64", "exe"))
assert flags[9] == (EXE_EXT not in ("wasm", "wasm32", "wasm64"))
assert flags[8] == ("arm" in EXE_EXT.lower())
assert flags[9] == ("wasm" in EXE_EXT.lower())


@mark.skipif('NO_OPTIONAL_TESTS or ONLY_SLOW')
Expand Down

0 comments on commit e2dae7d

Please sign in to comment.