Skip to content

Commit 658e8cf

Browse files
committed
REMOVE ME: run focused STM Sys tests
1 parent eee90de commit 658e8cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dune

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
(name ci)
2525
(package multicoretests)
2626
(deps
27-
(alias_rec %{env:DUNE_CI_ALIAS=runtest})))
28-
; (alias_rec focusedtest)))
27+
;(alias_rec %{env:DUNE_CI_ALIAS=runtest})
28+
(alias_rec focusedtest)))
2929

3030
; @focusedtest
3131
; repeat a single test a couple of times
@@ -36,7 +36,7 @@
3636

3737
; To change the test to repeat, change the source of the `copy`:
3838
(rule
39-
(copy src/io/lin_tests_domain.exe focusedtest.exe))
39+
(copy src/sys/stm_tests.exe focusedtest.exe))
4040

4141
(rule
4242
(alias focusedtest)
@@ -49,7 +49,7 @@
4949
(write-file hoped "")
5050
(write-file failed-runs "")
5151
(bash
52-
"for i in `seq 20`; do echo Starting $i-th run; if ! ./focusedtest.exe -v ; then echo $i >> failed-runs; fi; done")
52+
"for i in `seq 10`; do echo Starting $i-th run; if ! ./focusedtest.exe -v ; then echo $i >> failed-runs; fi; done")
5353
; edit the previous line to focus on a particular seed
5454
(diff failed-runs hoped)))))
5555

@@ -64,6 +64,6 @@
6464
(write-file hoped "")
6565
(write-file failed-runs "")
6666
(run cmd /q /c
67-
"for %G in (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20) do (echo Starting %G-th run && focusedtest.exe -v || echo %G >> failed-runs)")
67+
"for %G in (1,2,3,4,5,6,7,8,9,10) do (echo Starting %G-th run && focusedtest.exe -v || echo %G >> failed-runs)")
6868
; edit the previous line to focus on a particular seed
6969
(diff failed-runs hoped)))))

0 commit comments

Comments
 (0)