Skip to content

Commit

Permalink
dune: declare stresstests dependencies
Browse files Browse the repository at this point in the history
This should fix the nightly CIs

Signed-off-by: Pau Ruiz Safont <[email protected]>
  • Loading branch information
psafont committed Jul 30, 2024
1 parent afe5fec commit f7860c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions ocaml/libs/http-lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
(modules http_test radix_tree_test)
(libraries
alcotest

fmt
http_lib
)
Expand Down Expand Up @@ -88,16 +88,17 @@

(rule
(alias stresstest)
(deps bufio_test.exe)
; use default random seed on stresstests
(action (run %{dep:bufio_test.exe} -v -bt))
(action (run %{deps} -v -bt))
)

(executable
(modes exe)
(name test_client)
(modules test_client)
(libraries

http_lib
safe-resources
stunnel
Expand All @@ -112,7 +113,7 @@
(name test_server)
(modules test_server)
(libraries

http_lib
httpsvr
safe-resources
Expand Down
3 changes: 2 additions & 1 deletion ocaml/libs/xapi-stdext/lib/xapi-stdext-unix/test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@

(rule
(alias stresstest)
(deps unixext_test.exe)
; use default random seed on stresstests
(action (run %{dep:unixext_test.exe} -v -bt))
(action (run %{deps} -v -bt))
)

(test
Expand Down

0 comments on commit f7860c7

Please sign in to comment.