mirror of
https://github.com/JesseTG/melonds-ds.git
synced 2024-11-27 08:41:08 +00:00
Require the test suite to run with optimizations off so assert
s are kept
This commit is contained in:
parent
a346fdb726
commit
10457432f2
@ -2,6 +2,9 @@ import os
|
||||
import shutil
|
||||
import tempfile
|
||||
|
||||
if not __debug__:
|
||||
raise RuntimeError("The melonDS DS test suite should not be run with -O")
|
||||
|
||||
SYSTEM_FILES = ("ARM7_BIOS", "ARM9_BIOS", "ARM7_DSI_BIOS", "ARM9_DSI_BIOS", "NDS_FIRMWARE", "DSI_FIRMWARE", "DSI_NAND")
|
||||
testdir = tempfile.TemporaryDirectory(".libretro")
|
||||
system_dir = os.path.join(testdir.name, "system")
|
||||
|
Loading…
Reference in New Issue
Block a user