aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools/test/yecc_SUITE.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2016-09-27 12:50:21 +0200
committerHans Bolinder <[email protected]>2016-09-29 08:44:03 +0200
commit2990325d5ae7f7fd119aea540a2edae4f97e76d9 (patch)
tree6786c5f2d37e9b0aa07fdb914eb5555190b2169b /lib/parsetools/test/yecc_SUITE.erl
parent8bde09c998c68265361155aa8ed188aa0e2a4a44 (diff)
downloadotp-2990325d5ae7f7fd119aea540a2edae4f97e76d9.tar.gz
otp-2990325d5ae7f7fd119aea540a2edae4f97e76d9.tar.bz2
otp-2990325d5ae7f7fd119aea540a2edae4f97e76d9.zip
parsetools: Correct counting of newlines
See https://bugs.erlang.org/browse/ERL-263 The fix in commit c9bc5c94 of PR-431 (https://github.com/erlang/otp/pull/431) introduced new problems.
Diffstat (limited to 'lib/parsetools/test/yecc_SUITE.erl')
-rw-r--r--lib/parsetools/test/yecc_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parsetools/test/yecc_SUITE.erl b/lib/parsetools/test/yecc_SUITE.erl
index e91ddb11d1..5bd71d5d19 100644
--- a/lib/parsetools/test/yecc_SUITE.erl
+++ b/lib/parsetools/test/yecc_SUITE.erl
@@ -2009,7 +2009,7 @@ otp_11286(Config) when is_list(Config) ->
Dir = ?privdir,
UName = [1024] ++ "u",
UDir = filename:join(Dir, UName),
- ok = rpc:call(Node, file, make_dir, [UDir]),
+ _ = rpc:call(Node, file, make_dir, [UDir]),
%% Note: Cannot use UName as filename since the filename is used
%% as module name. To be fixed in R18.