diff options
author | Björn-Egil Dahlberg <[email protected]> | 2014-09-30 14:51:34 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2014-09-30 14:51:34 +0200 |
commit | 14a570b5ad9ad47027d0006fb0eab20b78ae100f (patch) | |
tree | 8e913ee716a8ea10542312ad43892b4dae7b7150 /lib/stdlib | |
parent | 588df549e708b68ffb2b1becb5efecd20a7e6224 (diff) | |
download | otp-14a570b5ad9ad47027d0006fb0eab20b78ae100f.tar.gz otp-14a570b5ad9ad47027d0006fb0eab20b78ae100f.tar.bz2 otp-14a570b5ad9ad47027d0006fb0eab20b78ae100f.zip |
stdlib: Refactor ?line in erl_pp_SUITE:misc_attrs
Diffstat (limited to 'lib/stdlib')
-rw-r--r-- | lib/stdlib/test/erl_pp_SUITE.erl | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/lib/stdlib/test/erl_pp_SUITE.erl b/lib/stdlib/test/erl_pp_SUITE.erl index babf3a49eb..04c1dd3898 100644 --- a/lib/stdlib/test/erl_pp_SUITE.erl +++ b/lib/stdlib/test/erl_pp_SUITE.erl @@ -604,20 +604,19 @@ import_export(Config) when is_list(Config) -> misc_attrs(suite) -> []; misc_attrs(Config) when is_list(Config) -> - ?line ok = pp_forms(<<"-module(m). ">>), - ?line ok = pp_forms(<<"-module(m, [Aafjlksfjdlsjflsdfjlsdjflkdsfjlk," - "Blsjfdlslfjsdf]). ">>), - ?line ok = pp_forms(<<"-export([]). ">>), - ?line ok = pp_forms(<<"-export([foo/2, bar/0]). ">>), - ?line ok = pp_forms(<<"-export([bar/0]). ">>), - ?line ok = pp_forms(<<"-import(lists, []). ">>), - ?line ok = pp_forms(<<"-import(lists, [map/2]). ">>), - ?line ok = pp_forms(<<"-import(lists, [map/2, foreach/2]). ">>), - ?line ok = pp_forms(<<"-'wild '({attr2,3}). ">>), - ?line ok = pp_forms(<<"-record(a, {b,c}). ">>), - ?line ok = pp_forms(<<"-record(' a ', {}). ">>), - ?line ok = pp_forms(<<"-record(' a ', {foo = foo:bar()}). ">>), - + ok = pp_forms(<<"-module(m). ">>), + ok = pp_forms(<<"-module(m, [Aafjlksfjdlsjflsdfjlsdjflkdsfjlk," + "Blsjfdlslfjsdf]). ">>), + ok = pp_forms(<<"-export([]). ">>), + ok = pp_forms(<<"-export([foo/2, bar/0]). ">>), + ok = pp_forms(<<"-export([bar/0]). ">>), + ok = pp_forms(<<"-import(lists, []). ">>), + ok = pp_forms(<<"-import(lists, [map/2]). ">>), + ok = pp_forms(<<"-import(lists, [map/2, foreach/2]). ">>), + ok = pp_forms(<<"-'wild '({attr2,3}). ">>), + ok = pp_forms(<<"-record(a, {b,c}). ">>), + ok = pp_forms(<<"-record(' a ', {}). ">>), + ok = pp_forms(<<"-record(' a ', {foo = foo:bar()}). ">>), ok. dialyzer_attrs(suite) -> |