summaryrefslogtreecommitdiff
path: root/test/test_run.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_run.py')
-rw-r--r--test/test_run.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test_run.py b/test/test_run.py
index cab195c..ee79bbb 100644
--- a/test/test_run.py
+++ b/test/test_run.py
@@ -27,10 +27,11 @@ class TestRun(SalisTest):
def commands(self, anc, arch):
return [
(
- f"./salis.py new -a{anc} -d{self.PUSH_POW} -f -g{compiler} -H{self.tempdir.name} -n{self.SIM_NAME} {optimized} -s{seed} -upush -Utest/ui/ -v{arch} -y{self.PUSH_POW}",
- f"./salis.py load -g{compiler} -H{self.tempdir.name} -n{self.SIM_NAME} {optimized} -upush -Utest/ui/",
+ f"./salis.py new -a{anc} -d{self.PUSH_POW} -f -g{compiler} -H{self.tempdir.name} {log_trace} -n{self.SIM_NAME} {optimized} -s{seed} -upush -Utest/ui/ -v{arch} -y{self.PUSH_POW}",
+ f"./salis.py load -g{compiler} -H{self.tempdir.name} {log_trace} -n{self.SIM_NAME} {optimized} -upush -Utest/ui/",
)
for compiler in ["clang", "gcc", "tcc"]
+ for log_trace in ["", "-l"]
for optimized in ["", "-o"]
for seed in [-1, 0, 1234]
]