From e8d7489adc8c39ecd6255dc160d7e545cb076de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gustavsson?= Date: Sat, 28 Jan 2012 08:26:48 +0100 Subject: Skip all inviso test cases if libraries are native-compiled --- lib/inviso/test/inviso_tool_SUITE.erl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'lib/inviso/test') diff --git a/lib/inviso/test/inviso_tool_SUITE.erl b/lib/inviso/test/inviso_tool_SUITE.erl index 6b16e506eb..f8a9cea47f 100644 --- a/lib/inviso/test/inviso_tool_SUITE.erl +++ b/lib/inviso/test/inviso_tool_SUITE.erl @@ -52,7 +52,12 @@ end_per_group(_GroupName, Config) -> %% ----------------------------------------------------------------------------- init_per_suite(Config) -> - Config. + case test_server:is_native(lists) of + true -> + {skip,"Native libs -- tracing doesn't work"}; + false -> + Config + end. %% ----------------------------------------------------------------------------- end_per_suite(_Config) -> -- cgit v1.2.3