1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
.PHONY: all bench stress
all:
dune build @runtest @all
bench:
dune exec -- ./bench/main.exe
test_posix:
EIO_BACKEND=posix dune runtest
dscheck:
dune exec -- ./lib_eio/tests/dscheck/test_condition.exe
dune exec -- ./lib_eio/tests/dscheck/test_rcfd.exe
dune exec -- ./lib_eio/tests/dscheck/test_sync.exe
dune exec -- ./lib_eio/tests/dscheck/test_semaphore.exe
dune exec -- ./lib_eio/tests/dscheck/test_cells.exe
stress:
dune exec -- ./stress/stress_proc.exe
dune exec -- ./stress/stress_semaphore.exe
dune exec -- ./stress/stress_release.exe
docker:
docker build -t eio .
|