diff options
-rw-r--r-- | src/rabbit_tests.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index 830824fc..f1d09571 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -91,7 +91,9 @@ fold_results(Fd, Results) -> all_tests_in_module() -> Functions = ?MODULE:module_info(functions), - [ F || {_, A}=F <- Functions, A == 0]. + [F || {Fn, A}=F <- Functions, A == 0 andalso + not lists:member(Fn, [test_spawn, + test_spawn_remote, test_queue])]. execute_test(Fd, {TestFun, 0}) when is_atom(TestFun) -> case atom_to_list(TestFun) of |