diff options
author | Björn Gustavsson <[email protected]> | 2011-02-24 15:03:55 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-08-18 10:00:28 +0200 |
commit | d12294aea905b4bc188c1e1c84f0ec7c2284faa7 (patch) | |
tree | e35b50fe3679f718ffed3d26b42a05b4abe2e70a /lib/compiler/test | |
parent | b44bff9cc71b2413d2e594ff7e207605bda6148e (diff) | |
download | otp-d12294aea905b4bc188c1e1c84f0ec7c2284faa7.tar.gz otp-d12294aea905b4bc188c1e1c84f0ec7c2284faa7.tar.bz2 otp-d12294aea905b4bc188c1e1c84f0ec7c2284faa7.zip |
compiler: Add no_line_info for suppressing line/1 instructions
Also update the r12 and r13 options so that they imply no_line_info.
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/compile_SUITE.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compiler/test/compile_SUITE.erl b/lib/compiler/test/compile_SUITE.erl index b3e5376ffd..8c6a623dfb 100644 --- a/lib/compiler/test/compile_SUITE.erl +++ b/lib/compiler/test/compile_SUITE.erl @@ -82,6 +82,7 @@ file_1(Config) when is_list(Config) -> ?line {ok,simple} = compile:file(Simple, [native,report]), %Smoke test. ?line {ok,simple} = compile:file(Target, [native,from_beam]), %Smoke test. ?line {ok,simple} = compile:file(Simple, [debug_info]), + ?line {ok,simple} = compile:file(Simple, [no_line_info]), %Coverage ?line ok = file:set_cwd(Cwd), ?line true = exists(Target), ?line passed = run(Target, test, []), |