|
15 | 15 | status = -1 |
16 | 16 | try |
17 | 17 | isfile("times_table") && rm("times_table") |
18 | | - status = run(`$jlpath --compile=min $testpath/scripts/times_table.jl`) |
| 18 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/times_table.jl`) |
19 | 19 | catch e |
20 | 20 | @warn "Could not compile $testpath/scripts/times_table.jl" |
21 | 21 | println(e) |
|
46 | 46 | status = -1 |
47 | 47 | try |
48 | 48 | isfile("withmallocarray") && rm("withmallocarray") |
49 | | - status = run(`$jlpath --compile=min $testpath/scripts/withmallocarray.jl`) |
| 49 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/withmallocarray.jl`) |
50 | 50 | catch e |
51 | 51 | @warn "Could not compile $testpath/scripts/withmallocarray.jl" |
52 | 52 | println(e) |
|
73 | 73 | status = -1 |
74 | 74 | try |
75 | 75 | isfile("rand_matrix") && rm("rand_matrix") |
76 | | - status = run(`$jlpath --compile=min $testpath/scripts/rand_matrix.jl`) |
| 76 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/rand_matrix.jl`) |
77 | 77 | catch e |
78 | 78 | @warn "Could not compile $testpath/scripts/rand_matrix.jl" |
79 | 79 | println(e) |
|
99 | 99 | status = -1 |
100 | 100 | try |
101 | 101 | isfile("randn_matrix") && rm("randn_matrix") |
102 | | - status = run(`$jlpath --compile=min $testpath/scripts/randn_matrix.jl`) |
| 102 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/randn_matrix.jl`) |
103 | 103 | catch e |
104 | 104 | @warn "Could not compile $testpath/scripts/randn_matrix.jl" |
105 | 105 | println(e) |
|
131 | 131 | status = -1 |
132 | 132 | try |
133 | 133 | isfile("loopvec_product") && rm("loopvec_product") |
134 | | - status = run(`$jlpath --compile=min $testpath/scripts/loopvec_product.jl`) |
| 134 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_product.jl`) |
135 | 135 | catch e |
136 | 136 | @warn "Could not compile $testpath/scripts/loopvec_product.jl" |
137 | 137 | println(e) |
|
159 | 159 | status = -1 |
160 | 160 | try |
161 | 161 | isfile("loopvec_matrix") && rm("loopvec_matrix") |
162 | | - status = run(`$jlpath --compile=min $testpath/scripts/loopvec_matrix.jl`) |
| 162 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_matrix.jl`) |
163 | 163 | catch e |
164 | 164 | @warn "Could not compile $testpath/scripts/loopvec_matrix.jl" |
165 | 165 | println(e) |
|
190 | 190 | status = -1 |
191 | 191 | try |
192 | 192 | isfile("loopvec_matrix_stack") && rm("loopvec_matrix_stack") |
193 | | - status = run(`$jlpath --compile=min $testpath/scripts/loopvec_matrix_stack.jl`) |
| 193 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/loopvec_matrix_stack.jl`) |
194 | 194 | catch e |
195 | 195 | @warn "Could not compile $testpath/scripts/loopvec_matrix_stack.jl" |
196 | 196 | println(e) |
|
221 | 221 | status = -1 |
222 | 222 | try |
223 | 223 | isfile("print_args") && rm("print_args") |
224 | | - status = run(`$jlpath --compile=min $testpath/scripts/print_args.jl`) |
| 224 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/print_args.jl`) |
225 | 225 | catch e |
226 | 226 | @warn "Could not compile $testpath/scripts/print_args.jl" |
227 | 227 | println(e) |
|
250 | 250 | status = -1 |
251 | 251 | try |
252 | 252 | isfile("interop") && rm("interop") |
253 | | - status = run(`$jlpath --compile=min $testpath/scripts/interop.jl`) |
| 253 | + status = run(`$jlpath --startup=no --compile=min $testpath/scripts/interop.jl`) |
254 | 254 | catch e |
255 | 255 | @warn "Could not compile $testpath/scripts/interop.jl" |
256 | 256 | println(e) |
|
0 commit comments