summaryrefslogtreecommitdiff
path: root/test/test_build.py
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-07-31 04:04:37 +0200
committerPaul Oliver <contact@pauloliver.dev>2026-08-05 00:20:29 +0200
commit3ede06f803cfa0173d246695527d26440fd555d5 (patch)
tree4283b35c149188d9f596d38435c0940e840571c8 /test/test_build.py
parent8a4563d6d0c9e81fdaa42f6f760cae2b49cad431 (diff)
Adds curses UIHEADmaster
Diffstat (limited to 'test/test_build.py')
-rw-r--r--test/test_build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_build.py b/test/test_build.py
index 7c0126a..0f4731a 100644
--- a/test/test_build.py
+++ b/test/test_build.py
@@ -28,7 +28,7 @@ class TestBuild(SalisTest):
for compiler in ["clang", "gcc", "tcc"]
for optimized in ["", "-o"]
for seed in [-1, 0, 1234]
- for ui in ["daemon"]
+ for ui in ["curses", "daemon"]
]
def commands_load(self):
@@ -36,7 +36,7 @@ class TestBuild(SalisTest):
f"./salis.py load -b -g{compiler} -H{self.tempdir.name} -n{self.SIM_NAME} {optimized} -u{ui}"
for compiler in ["clang", "gcc", "tcc"]
for optimized in ["", "-o"]
- for ui in ["daemon"]
+ for ui in ["curses", "daemon"]
]
# --------------------------------------------------------------------------