diff options
author | Lukas Larsson <[email protected]> | 2011-03-07 12:23:20 +0100 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2011-03-07 12:23:20 +0100 |
commit | 635c78f152ee6c7ddda23bf237e7ad3aa70abe77 (patch) | |
tree | 1a3d5e5d74b5e9f15f2d60f29099a1051f42a72a /lib/tools/test | |
parent | 1b4303f812d5968fc6de961146b39a1b20f75e42 (diff) | |
download | otp-635c78f152ee6c7ddda23bf237e7ad3aa70abe77.tar.gz otp-635c78f152ee6c7ddda23bf237e7ad3aa70abe77.tar.bz2 otp-635c78f152ee6c7ddda23bf237e7ad3aa70abe77.zip |
Update cover tests which depend on compiled files to be skipped if the compile testcase is skipped
Diffstat (limited to 'lib/tools/test')
-rw-r--r-- | lib/tools/test/cover_SUITE.erl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/tools/test/cover_SUITE.erl b/lib/tools/test/cover_SUITE.erl index f632409208..b55a1ddc7a 100644 --- a/lib/tools/test/cover_SUITE.erl +++ b/lib/tools/test/cover_SUITE.erl @@ -49,7 +49,12 @@ all(suite) -> "Can't run cover test."} end. -init_per_testcase(TC, Config) when TC =:= misc; TC =:= compile -> +init_per_testcase(TC, Config) when TC =:= misc; + TC =:= compile; + TC =:= analyze; + TC =:= distribution; + TC =:= otp_5031; + TC =:= stop -> case code:which(crypto) of Path when is_list(Path) -> init_per_testcase(dummy_tc, Config); |