We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250b4bb commit 3ab4639Copy full SHA for 3ab4639
test/juliatests.jl
@@ -29,13 +29,17 @@ function test_path(test)
29
end
30
31
nstmts = 10^4 # very quick, aborts a lot
32
+outputfile = "results.md"
33
i = 1
34
while i <= length(ARGS)
35
global i
36
a = ARGS[i]
37
if a == "--nstmts"
38
global nstmts = parse(Int, ARGS[i+1])
39
deleteat!(ARGS, i:i+1)
40
+ elseif a == "--output"
41
+ global outputfile = ARGS[i+1]
42
+ deleteat!(ARGS, i:i+1)
43
else
44
i += 1
45
@@ -136,7 +140,7 @@ move_to_node1("Distributed")
136
140
foreach(wait, all_tasks)
137
141
138
142
139
- open("results.md", "w") do io
143
+ open(outputfile, "w") do io
144
versioninfo(io)
145
println(io, "Test run at: ", now())
146
println(io)
0 commit comments