summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-19 15:25:13 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-19 15:25:13 +0200
commit9dd8e7f2ee581842d0376fef4292613b4e8275be (patch)
tree52d35361dffbff742a368839c80109d6322095b6
parente8557d262f2e6cc1f7937fa2079682debeae8785 (diff)
Fix #295 (consider *_SUITE.beam in ct skip check)
-rw-r--r--src/rebar_ct.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl
index 50efeb1..2cb0883 100644
--- a/src/rebar_ct.erl
+++ b/src/rebar_ct.erl
@@ -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]),