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/andor_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/andor_SUITE.erl')
-rw-r--r-- | lib/compiler/test/andor_SUITE.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/compiler/test/andor_SUITE.erl b/lib/compiler/test/andor_SUITE.erl index f7388f1614..fe69aeeb43 100644 --- a/lib/compiler/test/andor_SUITE.erl +++ b/lib/compiler/test/andor_SUITE.erl @@ -29,11 +29,12 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> test_lib:recompile(?MODULE), - [t_case, t_and_or, t_andalso, t_orelse, inside, overlap, - combined, in_case, before_and_inside_if]. + [{group,p}]. groups() -> - []. + [{p,test_lib:parallel(), + [t_case,t_and_or,t_andalso,t_orelse,inside,overlap, + combined,in_case,before_and_inside_if]}]. init_per_suite(Config) -> Config. |