diff options
author | Björn Gustavsson <[email protected]> | 2012-10-26 11:20:10 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-10-26 11:20:10 +0200 |
commit | a8b2ba096dc48a29af52fd68070089d4bbb37483 (patch) | |
tree | afca45311523d2da2fcb545e3649e0717a059dcd /lib/compiler/test/bs_match_SUITE.erl | |
parent | a6608f9e67b9f67e8d21bc3df81ba8129755741a (diff) | |
parent | d18ab0179e83f378026cea87dea026cae1077bec (diff) | |
download | otp-a8b2ba096dc48a29af52fd68070089d4bbb37483.tar.gz otp-a8b2ba096dc48a29af52fd68070089d4bbb37483.tar.bz2 otp-a8b2ba096dc48a29af52fd68070089d4bbb37483.zip |
Merge branch 'bjorn/compiler/test-cases'
* bjorn/compiler/test-cases:
Correct typo in test suite name
compiler: Run testcases in parallel
Diffstat (limited to 'lib/compiler/test/bs_match_SUITE.erl')
-rw-r--r-- | lib/compiler/test/bs_match_SUITE.erl | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/lib/compiler/test/bs_match_SUITE.erl b/lib/compiler/test/bs_match_SUITE.erl index 0e9d0bbc17..1bef409be0 100644 --- a/lib/compiler/test/bs_match_SUITE.erl +++ b/lib/compiler/test/bs_match_SUITE.erl @@ -44,19 +44,21 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> test_lib:recompile(?MODULE), - [fun_shadow, int_float, otp_5269, null_fields, wiger, - bin_tail, save_restore, shadowed_size_var, - partitioned_bs_match, function_clause, unit, - shared_sub_bins, bin_and_float, dec_subidentifiers, - skip_optional_tag, wfbm, degenerated_match, bs_sum, - coverage, multiple_uses, zero_label, followed_by_catch, - matching_meets_construction, simon, - matching_and_andalso, otp_7188, otp_7233, otp_7240, - otp_7498, match_string, zero_width, bad_size, haystack, - cover_beam_bool, matched_out_size]. + [{group,p}]. groups() -> - []. + [{p,test_lib:parallel(), + [fun_shadow,int_float,otp_5269,null_fields,wiger, + bin_tail,save_restore,shadowed_size_var, + partitioned_bs_match,function_clause,unit, + shared_sub_bins,bin_and_float,dec_subidentifiers, + skip_optional_tag,wfbm,degenerated_match,bs_sum, + coverage,multiple_uses,zero_label,followed_by_catch, + matching_meets_construction,simon, + matching_and_andalso,otp_7188,otp_7233,otp_7240, + otp_7498,match_string,zero_width,bad_size,haystack, + cover_beam_bool,matched_out_size]}]. + init_per_suite(Config) -> Config. |