diff options
author | Peter Andersson <[email protected]> | 2010-06-29 18:03:09 +0200 |
---|---|---|
committer | Peter Andersson <[email protected]> | 2010-07-06 02:44:27 +0200 |
commit | 79851b599df5caf5e2101d834a843e3837c6a6ae (patch) | |
tree | 8490cb6a80e20838bb3a6b091ed9f132f9b4ceea /lib/common_test/src/ct_testspec.erl | |
parent | 31b52954dc667861a2e7cd4edba100132499cd5f (diff) | |
download | otp-79851b599df5caf5e2101d834a843e3837c6a6ae.tar.gz otp-79851b599df5caf5e2101d834a843e3837c6a6ae.tar.bz2 otp-79851b599df5caf5e2101d834a843e3837c6a6ae.zip |
Improve handling of test case group specifications
Diffstat (limited to 'lib/common_test/src/ct_testspec.erl')
-rw-r--r-- | lib/common_test/src/ct_testspec.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common_test/src/ct_testspec.erl b/lib/common_test/src/ct_testspec.erl index 1aa3a859ab..100e33a940 100644 --- a/lib/common_test/src/ct_testspec.erl +++ b/lib/common_test/src/ct_testspec.erl @@ -218,7 +218,7 @@ get_skipped_cases(Node,Dir,Suite,Cases) -> case lists:keysearch(all,1,Cases) of {value,{all,{skip,Cmt}}} -> [{{Node,Dir},{Suite,Cmt}}]; - false -> + _ -> get_skipped_cases1(Node,Dir,Suite,Cases) end. |