diff options
| -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); | 
