diff options
author | Björn-Egil Dahlberg <[email protected]> | 2016-04-13 18:35:14 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2016-04-13 18:35:14 +0200 |
commit | 135309a30d70c5564d774d503d8bbe789446599c (patch) | |
tree | cbe94dc279695aa8f618fb6a0e94adb5828e1154 /lib/runtime_tools | |
parent | 5fb93f69a6a0cb99d3ebdead3f2549e01a6d6aa8 (diff) | |
download | otp-135309a30d70c5564d774d503d8bbe789446599c.tar.gz otp-135309a30d70c5564d774d503d8bbe789446599c.tar.bz2 otp-135309a30d70c5564d774d503d8bbe789446599c.zip |
runtime_tools: Skip dyntrace test if LTTng is enabled
Diffstat (limited to 'lib/runtime_tools')
-rw-r--r-- | lib/runtime_tools/test/dyntrace_SUITE.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/runtime_tools/test/dyntrace_SUITE.erl b/lib/runtime_tools/test/dyntrace_SUITE.erl index ed40cde0fb..f3c1cce8f8 100644 --- a/lib/runtime_tools/test/dyntrace_SUITE.erl +++ b/lib/runtime_tools/test/dyntrace_SUITE.erl @@ -48,7 +48,9 @@ all() -> dtrace -> [{group,smoke}]; systemtap -> - {skip,"SystemTap tests currently not supported"} + {skip,"SystemTap tests currently not supported"}; + lttng -> + {skip,"LTTng tests currently not supported"} end. groups() -> |