Skip to content
Snippets Groups Projects
Commit fbce50cd authored by François Bobot's avatar François Bobot
Browse files

Add execnow in ptests alias

parent dd7f3e86
No related branches found
No related tags found
No related merge requests found
......@@ -1716,6 +1716,7 @@ let dispatcher ~result_fmt ~oracle_fmt file directory config =
in
Format.fprintf result_fmt "\
(rule
(alias ptests)
(targets %a %a)
(action (system %S))
)
......@@ -1724,6 +1725,15 @@ let dispatcher ~result_fmt ~oracle_fmt file directory config =
print_list res.ex_bin
res.ex_cmd
;
List.iter (fun log ->
Format.fprintf result_fmt
"(rule\n \
(alias ptests)\n \
(action (diff %S %S))\n\
)\n"
(Filename.concat ".." (Filename.concat SubDir.oracle_dirname log))
log
) res.ex_log;
incr e
in
let treat_option option =
......
/* run.config
COMMENT: run.config is intentionally not-*
EXECNOW: BIN absorb.sav LOG absorb_sav.res LOG absorb_sav.err FRAMAC_PLUGIN=tests/.empty @frama-c@ -journal-disable -save absorb.sav @PTEST_FILE@ > absorb_sav.res 2> absorb_sav.err
EXECNOW: BIN absorb.sav2 LOG absorb_sav2.res LOG absorb_sav2.err @frama-c@ -load absorb.sav -eva @EVA_CONFIG@ -journal-disable -float-hex -save absorb.sav2 > absorb_sav2.res 2> absorb_sav2.err
OPT: -load absorb.sav2 -deps -out -input
EXECNOW: BIN absorb.sav LOG absorb_sav.res LOG absorb_sav.err PTESTS_IT_DOESNT_START_WITH_FRAMAC=yes @frama-c@ -no-autoload-plugins -journal-disable -save absorb.sav @PTEST_FILE@ > absorb_sav.res 2> absorb_sav.err
EXECNOW: BIN absorb.sav2 LOG absorb_sav2.res LOG absorb_sav2.err PTESTS_IT_DOESNT_START_WITH_FRAMAC=yes @frama-c@ -load %{dep:absorb.sav} -eva @EVA_CONFIG@ -journal-disable -float-hex -save absorb.sav2 > absorb_sav2.res 2> absorb_sav2.err
OPT: -load %{dep:absorb.sav2} -deps -out -input
*/
/* run.config*
DONTRUN:
......
[kernel] User Error: Frama-C state file 'absorb.sav2' does not exist
[kernel] Frama-C aborted: invalid user input.
[kernel] Warning: ignoring source files specified on the command line while loading a global initial context.
[from] Computing for function main
[from] Computing for function Frama_C_interval <-main
[from] Done for function Frama_C_interval
[from] Done for function main
[from] ====== DEPENDENCIES COMPUTED ======
These dependencies hold at termination for the executions that terminate:
[from] Function Frama_C_interval:
Frama_C_entropy_source FROM Frama_C_entropy_source (and SELF)
\result FROM Frama_C_entropy_source; min; max
[from] Function main:
Frama_C_entropy_source FROM Frama_C_entropy_source (and SELF)
x FROM x; y (and SELF)
y FROM x; y (and SELF)
z FROM y
t FROM Frama_C_entropy_source
min_f FROM \nothing
min_fl FROM \nothing
den FROM \nothing
[from] ====== END OF DEPENDENCIES ======
[inout] Out (internal) for function main:
Frama_C_entropy_source; x; y; z; t; min_f; min_fl; den; b; tmp
[inout] Inputs for function main:
Frama_C_entropy_source; x; y; min_f
......@@ -4,7 +4,7 @@ CMXS: @PTEST_NAME@
OPT: -json-compilation-database ./ -print
OPT: jcdb2.c -json-compilation-database with_arguments.json -print
OPT: -json-compilation-database with_arguments.json -load-module %{dep:@PTEST_NAME@.cmxs}
EXECNOW: LOG list_files.res LOG list_files.err share/analysis-scripts/list_files.py compile_commands_working.json > list_files.res 2> list_files.err
EXECNOW: LOG list_files.res LOG list_files.err %{read:../syntax/framac_share_path}/analysis-scripts/list_files.py %{dep:compile_commands_working.json} > list_files.res 2> list_files.err
*/
#include <stdio.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment