Skip to content

Commit

Permalink
Update run.ex
Browse files Browse the repository at this point in the history
Replaced `eutest` with `eui` and adjusted command line parameters. Also, and this is the weird bit, changed `>` to `2>`
  • Loading branch information
axtens authored Mar 1, 2024
1 parent ceabb75 commit b24b9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/run.ex
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ procedure process(sequence slug, sequence soln_folder, sequence outp_folder)
create_directory(output_dir)
printf(1, "%s: testing...", {slug})
sequence outfile = join_path({output_dir,"t_" & slug & ".out"})
sequence cmd = build_commandline({"eutest",join_path({solution_dir,"t_" & slug & ".e"}),">", outfile})
sequence cmd = build_commandline({"eui","-batch","-d","UNITTEST",join_path({solution_dir,"t_" & slug & ".e"}),"2>", outfile})
system(cmd,2)

atom ifh = open(outfile, "r")
Expand Down

0 comments on commit b24b9be

Please sign in to comment.