summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dandrimont <Nicolas.Dandrimont@crans.org>2011-06-11 23:38:24 +0200
committerStéphane Glondu <glondu@debian.org>2023-08-17 07:27:42 +0200
commit3fec12c7ab8b775e38f2e960c854cf449a7f5d9a (patch)
tree4b0018b848619a888e932076db3f103973c767b6
parent860055fe92750e2ad4bdd7eddc01b89c1a015bfb (diff)
Disable the tests that need a working dbus daemon
Gbp-Pq: Name 0001-Disable-the-tests-that-need-a-working-dbus-daemon.patch
-rw-r--r--tests/main.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/main.ml b/tests/main.ml
index edd960f..cf85171 100644
--- a/tests/main.ml
+++ b/tests/main.ml
@@ -33,7 +33,7 @@ let rec run_tests failures total = function
let%lwt () = title name in
begin
try%lwt
- test ()
+ Lwt_unix.with_timeout 30. test
with exn ->
let%lwt () = Lwt_io.printlf "test failed with: %s" (Printexc.to_string exn) in
let%lwt () = Lwt_io.printl (Printexc.get_backtrace ()) in
@@ -60,8 +60,8 @@ let () = Lwt_main.run begin
run_tests 0 0 [
"serialization", Test_serialization.test;
"string validation", Test_validation.test;
- "authentication", Test_auth.test;
+ (*"authentication", Test_auth.test;
(*"communication", Test_communication.test;*)
- "garbage collection", Test_gc.test;
+ "garbage collection", Test_gc.test;*)
]
end