Browse Source

Fix #295 (consider *_SUITE.beam in ct skip check)

pull/3/head
Tuncer Ayaz 12 years ago
parent
commit
9dd8e7f2ee
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_ct.erl

+ 1
- 1
src/rebar_ct.erl View File

@ -59,7 +59,7 @@ run_test_if_present(TestDir, LogDir, Config, File) ->
?WARN("~s directory not present - skipping\n", [TestDir]),
ok;
true ->
case filelib:wildcard(TestDir ++ "/*_SUITE.erl") of
case filelib:wildcard(TestDir ++ "/*_SUITE.{beam,erl}") of
[] ->
?WARN("~s directory present, but no common_test"
++ " SUITES - skipping\n", [TestDir]),

Loading…
Cancel
Save