Skip to content

Commit c8cfd3f

Browse files
committed
run without startup files
1 parent 6679965 commit c8cfd3f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

test/testintegration.jl

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
status = -1
1616
try
1717
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`)
1919
catch e
2020
@warn "Could not compile $testpath/scripts/times_table.jl"
2121
println(e)
@@ -46,7 +46,7 @@
4646
status = -1
4747
try
4848
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`)
5050
catch e
5151
@warn "Could not compile $testpath/scripts/withmallocarray.jl"
5252
println(e)
@@ -73,7 +73,7 @@
7373
status = -1
7474
try
7575
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`)
7777
catch e
7878
@warn "Could not compile $testpath/scripts/rand_matrix.jl"
7979
println(e)
@@ -99,7 +99,7 @@
9999
status = -1
100100
try
101101
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`)
103103
catch e
104104
@warn "Could not compile $testpath/scripts/randn_matrix.jl"
105105
println(e)
@@ -131,7 +131,7 @@
131131
status = -1
132132
try
133133
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`)
135135
catch e
136136
@warn "Could not compile $testpath/scripts/loopvec_product.jl"
137137
println(e)
@@ -159,7 +159,7 @@
159159
status = -1
160160
try
161161
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`)
163163
catch e
164164
@warn "Could not compile $testpath/scripts/loopvec_matrix.jl"
165165
println(e)
@@ -190,7 +190,7 @@
190190
status = -1
191191
try
192192
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`)
194194
catch e
195195
@warn "Could not compile $testpath/scripts/loopvec_matrix_stack.jl"
196196
println(e)
@@ -221,7 +221,7 @@
221221
status = -1
222222
try
223223
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`)
225225
catch e
226226
@warn "Could not compile $testpath/scripts/print_args.jl"
227227
println(e)
@@ -250,7 +250,7 @@
250250
status = -1
251251
try
252252
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`)
254254
catch e
255255
@warn "Could not compile $testpath/scripts/interop.jl"
256256
println(e)

0 commit comments

Comments
 (0)