diff options
author | Hans Bolinder <[email protected]> | 2016-02-08 08:22:21 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-02-08 08:22:21 +0100 |
commit | e280686680fddb487f30c73d668091d68764f076 (patch) | |
tree | eec4f30abdd476be6e3f9002444f43fdc1bcf813 | |
parent | 99174d90859c93d0a5e11cb8fef4760f2317eb6f (diff) | |
parent | 05e77dac85c5c1686865e015078dfc16bec5f013 (diff) | |
download | otp-e280686680fddb487f30c73d668091d68764f076.tar.gz otp-e280686680fddb487f30c73d668091d68764f076.tar.bz2 otp-e280686680fddb487f30c73d668091d68764f076.zip |
Merge branch 'hb/tools/fix_bc_bug/OTP-13277' into maint
* hb/tools/fix_bc_bug/OTP-13277:
tools: Correct a Cover test
-rw-r--r-- | lib/tools/test/cover_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tools/test/cover_SUITE.erl b/lib/tools/test/cover_SUITE.erl index 8264747a3b..71570a55fa 100644 --- a/lib/tools/test/cover_SUITE.erl +++ b/lib/tools/test/cover_SUITE.erl @@ -1549,7 +1549,7 @@ comprehension_8188(Cf) -> %% The template cannot have a counter since it is not allowed to %% be a block. - ?line [% {{t,1},1}, + ?line [{{t,1},1}, %% {{t,2},2}, {{t,3},1}, {{t,4},1}, @@ -1559,7 +1559,7 @@ comprehension_8188(Cf) -> {{t,12},3}, {{t,13},2}, {{t,14},2}] = - analyse_expr(<<"<< \n" % 1 (now: 0) + analyse_expr(<<"<< \n" % 1 " << (X*2) >> || \n" % 2 (now: 0) " <<X>> <= << (case two() of\n" " 2 -> 1;\n" % 1 @@ -1574,7 +1574,7 @@ comprehension_8188(Cf) -> " true >>.\n" % 2 "two() -> 2">>, Cf), - ?line [% {{t,1},1}, + ?line [{{t,1},1}, %% {{t,2},4}, {{t,4},1}, {{t,6},1}, @@ -1583,7 +1583,7 @@ comprehension_8188(Cf) -> {{t,11},2}, {{t,12},4}, {{t,13},1}] = - analyse_expr(<<"<< \n" % 1 (now: 0) + analyse_expr(<<"<< \n" % 1 " << (2)\n" % 4 (now: 0) " :(8) >> || \n" " <<X>> <= << 1,\n" % 1 |