Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ let check_subsets msg ((s1, s2, s3) as all) ((s1', s2', s3') as all') =

let test_select =
let gen, print = Generate.select_input in
Test.make ~long_factor:10 ~name:__FUNCTION__ ~print gen @@ fun t ->
Test.make ~name:__FUNCTION__ ~print gen @@ fun t ->
(* epoll raised EEXIST, but none of the actual callers in XAPI need this,
so skip
*)
Expand Down
8 changes: 8 additions & 0 deletions ocaml/quicktest/quicktest
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
#!/bin/bash

ulimit -n 2048

# By default make the tests run 10x as many iterations as the default they
# would've run in the CI
# XenRT can further override this env var if desired
# For this to have an effect tests must NOT specify a long_factor of their own.
QCHECK_LONG_FACTOR=${QCHECK_LONG_FACTOR:=10}
export QCHECK_LONG_FACTOR
echo "QCHECK_LONG_FACTOR: ${QCHECK_LONG_FACTOR}"
# Run quicktest with support for exception backtraces.
OCAMLRUNPARAM=b "@OPTDIR@/debug/quicktestbin" "$@"
Loading