aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2010-12-14 17:05:19 +0100
committerLukas Larsson <[email protected]>2011-02-17 17:34:51 +0100
commit1d8922df60645e0ba374ff62a4774c7bc71f4701 (patch)
treef169e3ac5a09af67df058fddef564446deb4c32d /lib/parsetools
parentafd8d827f9d1dd3c2a58a29ce3e102b21b8aa6ed (diff)
downloadotp-1d8922df60645e0ba374ff62a4774c7bc71f4701.tar.gz
otp-1d8922df60645e0ba374ff62a4774c7bc71f4701.tar.bz2
otp-1d8922df60645e0ba374ff62a4774c7bc71f4701.zip
Fix formatting for parsetools
Diffstat (limited to 'lib/parsetools')
-rw-r--r--lib/parsetools/test/leex_SUITE.erl18
-rw-r--r--lib/parsetools/test/yecc_SUITE.erl44
2 files changed, 33 insertions, 29 deletions
diff --git a/lib/parsetools/test/leex_SUITE.erl b/lib/parsetools/test/leex_SUITE.erl
index 23ecc265e9..d57a2acf76 100644
--- a/lib/parsetools/test/leex_SUITE.erl
+++ b/lib/parsetools/test/leex_SUITE.erl
@@ -35,12 +35,14 @@
-define(privdir, ?config(priv_dir, Config)).
-endif.
--export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2, init_per_testcase/2, end_per_testcase/2]).
+-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
+ init_per_group/2,end_per_group/2,
+ init_per_testcase/2, end_per_testcase/2]).
-export([
- file/1, compile/1, syntax/1,
-
- pt/1, man/1, ex/1, ex2/1, not_yet/1]).
+ file/1, compile/1, syntax/1,
+
+ pt/1, man/1, ex/1, ex2/1, not_yet/1]).
% Default timetrap timeout (set in init_per_testcase).
-define(default_timeout, ?t:minutes(1)).
@@ -57,11 +59,11 @@ end_per_testcase(_Case, Config) ->
suite() -> [{suite_callbacks,[ts_install_scb]}].
all() ->
-[{group, checks}, {group, examples}].
+ [{group, checks}, {group, examples}].
groups() ->
[{checks, [], [file, compile, syntax]},
- {examples, [], [pt, man, ex, ex2, not_yet]}].
+ {examples, [], [pt, man, ex, ex2, not_yet]}].
init_per_suite(Config) ->
Config.
@@ -70,10 +72,10 @@ end_per_suite(_Config) ->
ok.
init_per_group(_GroupName, Config) ->
- Config.
+ Config.
end_per_group(_GroupName, Config) ->
- Config.
+ Config.
diff --git a/lib/parsetools/test/yecc_SUITE.erl b/lib/parsetools/test/yecc_SUITE.erl
index 8d6643590e..961fc0b05f 100644
--- a/lib/parsetools/test/yecc_SUITE.erl
+++ b/lib/parsetools/test/yecc_SUITE.erl
@@ -34,19 +34,21 @@
-define(privdir, ?config(priv_dir, Config)).
-endif.
--export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1, init_per_group/2,end_per_group/2, init_per_testcase/2, end_per_testcase/2]).
+-export([all/0, suite/0,groups/0,init_per_suite/1, end_per_suite/1,
+ init_per_group/2,end_per_group/2,
+ init_per_testcase/2, end_per_testcase/2]).
-export([app_test/1,
-
- file/1, syntax/1, compile/1, rules/1, expect/1,
- conflicts/1,
-
- empty/1, prec/1, yeccpre/1, lalr/1, old_yecc/1,
- other_examples/1,
-
- otp_5369/1, otp_6362/1, otp_7945/1, otp_8483/1, otp_8486/1,
-
- otp_7292/1, otp_7969/1, otp_8919/1]).
+
+ file/1, syntax/1, compile/1, rules/1, expect/1,
+ conflicts/1,
+
+ empty/1, prec/1, yeccpre/1, lalr/1, old_yecc/1,
+ other_examples/1,
+
+ otp_5369/1, otp_6362/1, otp_7945/1, otp_8483/1, otp_8486/1,
+
+ otp_7292/1, otp_7969/1, otp_8919/1]).
% Default timetrap timeout (set in init_per_testcase).
-define(default_timeout, ?t:minutes(1)).
@@ -63,17 +65,17 @@ end_per_testcase(_Case, Config) ->
suite() -> [{suite_callbacks,[ts_install_scb]}].
all() ->
-[app_test, {group, checks}, {group, examples},
- {group, bugs}, {group, improvements}].
+ [app_test, {group, checks}, {group, examples},
+ {group, bugs}, {group, improvements}].
groups() ->
[{checks, [],
- [file, syntax, compile, rules, expect, conflicts]},
- {examples, [],
- [empty, prec, yeccpre, lalr, old_yecc, other_examples]},
- {bugs, [],
- [otp_5369, otp_6362, otp_7945, otp_8483, otp_8486]},
- {improvements, [], [otp_7292, otp_7969]}].
+ [file, syntax, compile, rules, expect, conflicts]},
+ {examples, [],
+ [empty, prec, yeccpre, lalr, old_yecc, other_examples]},
+ {bugs, [],
+ [otp_5369, otp_6362, otp_7945, otp_8483, otp_8486]},
+ {improvements, [], [otp_7292, otp_7969, otp_8919]}].
init_per_suite(Config) ->
Config.
@@ -82,10 +84,10 @@ end_per_suite(_Config) ->
ok.
init_per_group(_GroupName, Config) ->
- Config.
+ Config.
end_per_group(_GroupName, Config) ->
- Config.
+ Config.
app_test(doc) ->