summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 1fc857601..0cfd50f5c 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -258,6 +258,8 @@ def run_micropython(pyb, args, test_file, is_special=False):
cmdlist = [MICROPYTHON, "-X", "emit=" + args.emit]
if args.heapsize is not None:
cmdlist.extend(["-X", "heapsize=" + args.heapsize])
+ if sys.platform == "darwin":
+ cmdlist.extend(["-X", "realtime"])
# if running via .mpy, first compile the .py file
if args.via_mpy: