aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/src/ct_run.erl
diff options
context:
space:
mode:
authorAndrey Pampukha <[email protected]>2010-02-24 15:15:41 +0100
committerRaimo Niskanen <[email protected]>2010-06-09 16:19:08 +0200
commitf2dcd87634cdcee65f0a930731a45005b4c20d08 (patch)
tree322016c8b0c6cddc08735f9de898a26e9eb7db36 /lib/common_test/src/ct_run.erl
parent8c79c17611c37217345e969aa2c344fe34e0375e (diff)
downloadotp-f2dcd87634cdcee65f0a930731a45005b4c20d08.tar.gz
otp-f2dcd87634cdcee65f0a930731a45005b4c20d08.tar.bz2
otp-f2dcd87634cdcee65f0a930731a45005b4c20d08.zip
Implement reloading of the config data
Diffstat (limited to 'lib/common_test/src/ct_run.erl')
-rw-r--r--lib/common_test/src/ct_run.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/common_test/src/ct_run.erl b/lib/common_test/src/ct_run.erl
index 04bc047f43..d3239b7ce3 100644
--- a/lib/common_test/src/ct_run.erl
+++ b/lib/common_test/src/ct_run.erl
@@ -1576,8 +1576,8 @@ run_make(Targets, TestDir0, Mod, UserInclude) ->
Failure;
MakeInfo ->
FileTest = fun(F, suites) -> is_suite(F);
- (F, helpmods) -> not is_suite(F);
- (_, _) -> true end,
+ (F, helpmods) -> not is_suite(F)
+ end,
Files = lists:flatmap(fun({F,out_of_date}) ->
case FileTest(F, Targets) of
true -> [F];