Skip to content

Commit

Permalink
quicktest: disable open 1024 fds on startup for now
Browse files Browse the repository at this point in the history
We've enabled running the unixext tests in quicktest.
They open 1024 file descriptors on startup to check for the absence of select.
And although that works for unixext (it is select-free), it doesn't yet work for the rest
of quicktests on master (the required changes to make it work are on the epoll branch).

Temporarily disable this test and add a note to reenable it on the epoll branch.

Fixes: efcb7af ("CP-50448: run the QuickCheck tests in QuickTest")

Signed-off-by: Edwin Török <[email protected]>
  • Loading branch information
edwintorok authored and lindig committed Aug 29, 2024
1 parent 905a485 commit e5088b6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,4 +286,5 @@ let tests =
let () =
(* avoid SIGPIPE *)
let (_ : Sys.signal_behavior) = Sys.signal Sys.sigpipe Sys.Signal_ignore in
Xapi_stdext_unix.Unixext.test_open 1024
(* TODO: reenable once the epoll branch is merged Xapi_stdext_unix.Unixext.test_open 1024 *)
()

0 comments on commit e5088b6

Please sign in to comment.