diff options
author | Hans Bolinder <[email protected]> | 2016-09-13 08:15:40 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-09-13 08:15:40 +0200 |
commit | 8437246fc8cc41d56d48b0c6b16dbae7e9c5e11d (patch) | |
tree | 4a2ed6413328dbb03c277766d0739d5af21a7677 /lib/parsetools/test/yecc_SUITE.erl | |
parent | 564aaba04228da215e560027eaa7963d86454ad0 (diff) | |
parent | 600ad7962a67c0484c5e37393dc978c447841b52 (diff) | |
download | otp-8437246fc8cc41d56d48b0c6b16dbae7e9c5e11d.tar.gz otp-8437246fc8cc41d56d48b0c6b16dbae7e9c5e11d.tar.bz2 otp-8437246fc8cc41d56d48b0c6b16dbae7e9c5e11d.zip |
Merge branch 'maint'
* maint:
parsetools: Suppress Dialyzer-warnings
Diffstat (limited to 'lib/parsetools/test/yecc_SUITE.erl')
-rw-r--r-- | lib/parsetools/test/yecc_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/parsetools/test/yecc_SUITE.erl b/lib/parsetools/test/yecc_SUITE.erl index 3710569aba..e91ddb11d1 100644 --- a/lib/parsetools/test/yecc_SUITE.erl +++ b/lib/parsetools/test/yecc_SUITE.erl @@ -342,7 +342,7 @@ syntax(Config) when is_list(Config) -> {L2,_,{bad_inline,{yeccpars2_2_,1}}}]}], []} = compile:file(Parserfile1, [basic_validation,return]), ?line L1 = 31 + SzYeccPre, - ?line L2 = 38 + SzYeccPre + ?line L2 = 39 + SzYeccPre end(), %% Bad macro in action. OTP-7224. @@ -360,7 +360,7 @@ syntax(Config) when is_list(Config) -> {L2,_,{bad_inline,{yeccpars2_2_,1}}}]}], []} = compile:file(Parserfile1, [basic_validation,return]), ?line L1 = 31 + SzYeccPre, - ?line L2 = 38 + SzYeccPre + ?line L2 = 39 + SzYeccPre end(), %% Check line numbers. OTP-7224. @@ -1623,7 +1623,7 @@ otp_7292(Config) when is_list(Config) -> [{_,[{16,_,{unused_function,{foo,0}}}]}]} = compile:file(Parserfile1, [basic_validation, return]), L1 = 41 + SzYeccPre, - L2 = 48 + SzYeccPre + L2 = 49 + SzYeccPre end(), YeccPre = filename:join(Dir, "yeccpre.hrl"), @@ -1641,7 +1641,7 @@ otp_7292(Config) when is_list(Config) -> [{_,[{16,_,{unused_function,{foo,0}}}]}]} = compile:file(Parserfile1, [basic_validation, return]), ?line L1 = 40 + SzYeccPre, - ?line L2 = 47 + SzYeccPre + ?line L2 = 48 + SzYeccPre end(), file:delete(YeccPre), |