This repository was archived by the owner on Jun 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -77,9 +77,7 @@ mod cli {
77
77
command
78
78
. arg ( "compile" )
79
79
. arg ( "--output" )
80
- . arg ( "tests/_build/cli" )
81
- // Turn off optimizations as work-around for debug info bug in EIR
82
- . arg ( "-O0" ) ;
80
+ . arg ( "tests/_build/cli" ) ;
83
81
84
82
let compile_output = command
85
83
. arg ( "tests/cli/init.erl" )
Original file line number Diff line number Diff line change @@ -38,9 +38,7 @@ fn compile() {
38
38
command
39
39
. arg ( "compile" )
40
40
. arg ( "--output" )
41
- . arg ( "tests/_build/global_dynamic" )
42
- // Turn off optimizations as work-around for debug info bug in EIR
43
- . arg ( "-O0" ) ;
41
+ . arg ( "tests/_build/global_dynamic" ) ;
44
42
45
43
let compile_output = command
46
44
. arg ( "tests/global_dynamic/init.erl" )
Original file line number Diff line number Diff line change @@ -10,9 +10,7 @@ mod hello_world {
10
10
command
11
11
. arg ( "compile" )
12
12
. arg ( "--output" )
13
- . arg ( "tests/_build/hello_world" )
14
- // Turn off optimizations as work-around for debug info bug in EIR
15
- . arg ( "-O0" ) ;
13
+ . arg ( "tests/_build/hello_world" ) ;
16
14
17
15
let compile_output = command
18
16
. arg ( "tests/hello_world/init.erl" )
You can’t perform that action at this time.
0 commit comments