Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
d18eafb8
Commit
d18eafb8
authored
2 years ago
by
Patrick Baudin
Browse files
Options
Downloads
Patches
Plain Diff
[ptests] adds @<ptest-name>.[<ptest-number>.{exec,execnow}].diff
parent
85b78086
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/ptests/ptests.ml
+72
-39
72 additions, 39 deletions
tools/ptests/ptests.ml
with
72 additions
and
39 deletions
tools/ptests/ptests.ml
+
72
−
39
View file @
d18eafb8
...
@@ -252,13 +252,15 @@ let example_msg =
...
@@ -252,13 +252,15 @@ let example_msg =
@@<alias-name> # Tests all configurations related to the <alias-name>@ \
@@<alias-name> # Tests all configurations related to the <alias-name>@ \
@@<alias-name>_config # Tests only the default configuration.@ \
@@<alias-name>_config # Tests only the default configuration.@ \
@@<alias-name>_config_<configuration> # Tests only the specified <configuration>.@ \
@@<alias-name>_config_<configuration> # Tests only the specified <configuration>.@ \
@@<PTEST_NAME>.wtests # Tests the specified file.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.exec.wtests # Tests the specified sub-test comand.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.execnow.wtests # Tests the specified execnow command.@ \
@@<PTEST_FILE> # Force to reproduce the corresponding test and prints the outputs.@ \
@@<PTEST_FILE> # Force to reproduce the corresponding test and prints the outputs.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.exec.show # Prints the related sub-test command.@ \
@@<PTEST_NAME>.wtests # Tests the specified file.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.execnow.show # Prints the related execnow command.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.exec.wtests # Tests the specified sub-test command.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.diff # Prints the difference from the related oracles.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.execnow.wtests # Tests the specified execnow command.@ \
@@<PTEST_NAME>.diff # Prints differences with the oracles related to the specified file.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.exec.diff # Prints differences with the oracles related to the specified sub-test command.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.execnow.diff # Prints differences with the oracles related to the specified execnow command.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.exec.show # Prints the related sub-test command.@ \
@@<PTEST_NAME>.<PTEST_NUMBER>.execnow.show # Prints the related execnow command.@ \
Note: the <alias-name> defaults to 'ptests'. It can be specified in different ways:@ \
Note: the <alias-name> defaults to 'ptests'. It can be specified in different ways:@ \
- from the command line option '-dune-alias <alias-name>'@ \
- from the command line option '-dune-alias <alias-name>'@ \
- from directives in 'ptests_config' files such as 'DUNE_ALIAS = <alias-name>'@ \
- from directives in 'ptests_config' files such as 'DUNE_ALIAS = <alias-name>'@ \
...
@@ -1158,11 +1160,6 @@ type toplevel_command =
...
@@ -1158,11 +1160,6 @@ type toplevel_command =
deps
:
deps
;
deps
:
deps
;
}
}
let
catenate_number
nb_files
prefix
n
=
if
nb_files
>
1
then
prefix
^
"."
^
(
string_of_int
n
)
else
prefix
let
name_without_extension
command
=
let
name_without_extension
command
=
try
try
Filename
.
chop_extension
command
.
file
Filename
.
chop_extension
command
.
file
...
@@ -1176,7 +1173,10 @@ let make_oracle_file ~env x = Filename.concat (config_name ~env "oracle") x
...
@@ -1176,7 +1173,10 @@ let make_oracle_file ~env x = Filename.concat (config_name ~env "oracle") x
let
gen_prefix
gen_file
cmd
=
let
gen_prefix
gen_file
cmd
=
let
prefix
=
gen_file
(
name_without_extension
cmd
)
in
let
prefix
=
gen_file
(
name_without_extension
cmd
)
in
catenate_number
cmd
.
nb_files
prefix
cmd
.
nth
if
cmd
.
nb_files
>
1
then
prefix
^
"."
^
(
string_of_int
cmd
.
nth
)
else
prefix
let
oracle_prefix
~
env
=
gen_prefix
(
make_oracle_file
~
env
)
let
oracle_prefix
~
env
=
gen_prefix
(
make_oracle_file
~
env
)
let
log_prefix
~
env
=
gen_prefix
(
make_result_file
~
env
)
let
log_prefix
~
env
=
gen_prefix
(
make_result_file
~
env
)
...
@@ -1297,8 +1297,6 @@ let redirection ?reslog ?errlog cmd =
...
@@ -1297,8 +1297,6 @@ let redirection ?reslog ?errlog cmd =
let
ptests_alias
~
env
=
config_name
~
env
(
env
.
dune_alias
^
"_config"
)
let
ptests_alias
~
env
=
config_name
~
env
(
env
.
dune_alias
^
"_config"
)
let
mk_alias
cmd
suffix
=
Format
.
sprintf
"%s.%d.%s"
cmd
.
test_name
cmd
.
nth
suffix
type
wtest
=
{
type
wtest
=
{
dir
:
(
string
[
@
default
""
]);
(* information on the test directory *)
dir
:
(
string
[
@
default
""
]);
(* information on the test directory *)
info
:
(
string
[
@
default
""
]);
(* information *)
info
:
(
string
[
@
default
""
]);
(* information *)
...
@@ -1367,6 +1365,12 @@ let oracle_target oracle_fmt dir fname =
...
@@ -1367,6 +1365,12 @@ let oracle_target oracle_fmt dir fname =
Format
.
fprintf
oracle_fmt
Format
.
fprintf
oracle_fmt
"(rule (target %S) (mode fallback) (action (write-file %S
\"\"
)))
\n
"
fname
fname
"(rule (target %S) (mode fallback) (action (write-file %S
\"\"
)))
\n
"
fname
fname
let
subtest_alias_prefix
cmd
=
Format
.
sprintf
"%s.%d.%s"
cmd
.
test_name
cmd
.
nth
(
if
cmd
.
execnow
then
"execnow"
else
"exec"
)
let
command_string
~
env
~
result_fmt
~
oracle_fmt
command
=
let
command_string
~
env
~
result_fmt
~
oracle_fmt
command
=
let
log_prefix
=
log_prefix
~
env
command
in
let
log_prefix
=
log_prefix
~
env
command
in
let
reslog
=
log_prefix
^
".res.log"
in
let
reslog
=
log_prefix
^
".res.log"
in
...
@@ -1411,7 +1415,8 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1411,7 +1415,8 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
oracle_err
=
Filename
.
concat
".."
(
oracle_prefix
^
".err.oracle"
);
oracle_err
=
Filename
.
concat
".."
(
oracle_prefix
^
".err.oracle"
);
}
}
in
in
let
wrapper_basename
=
mk_alias
command
"exec.wtests"
in
let
subtest_alias
=
subtest_alias_prefix
command
in
let
wrapper_basename
=
subtest_alias
^
".wtests"
in
if
!
wrapper_cmd
<>
""
then
begin
if
!
wrapper_cmd
<>
""
then
begin
Format
.
fprintf
result_fmt
Format
.
fprintf
result_fmt
"(rule ; %s
\n
\
"(rule ; %s
\n
\
...
@@ -1514,7 +1519,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1514,7 +1519,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
(* rule: *)
(* rule: *)
n
command
.
nth
command
.
file
n
command
.
nth
command
.
file
(* alias: *)
(* alias: *)
(
p
test
s
_alias
~
env
)
(
sub
test_alias
^
".diff"
)
(* enabled_if: *)
(* enabled_if: *)
pp_enabled_if
command
.
deps
pp_enabled_if
command
.
deps
(* action: *)
(* action: *)
...
@@ -1531,7 +1536,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1531,7 +1536,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
(* rule: *)
(* rule: *)
command
.
nth
command
.
file
command
.
nth
command
.
file
(* alias: *)
(* alias: *)
(
mk_alias
command
"exec"
)
subtest_alias
(* deps: *)
(* deps: *)
pp_command_deps
command
pp_command_deps
command
(* enabled_if: *)
(* enabled_if: *)
...
@@ -1550,7 +1555,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1550,7 +1555,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
(* rule: *)
(* rule: *)
command
.
nth
command
.
file
command
.
nth
command
.
file
(* alias: *)
(* alias: *)
(
mk_alias
command
"exec
.show"
)
(
subtest_alias
^
"
.show"
)
(* deps: *)
(* deps: *)
pp_command_deps
command
(* to get an updated build even in case of using the result *)
pp_command_deps
command
(* to get an updated build even in case of using the result *)
(* enabled_if: *)
(* enabled_if: *)
...
@@ -1558,7 +1563,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1558,7 +1563,7 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
(* action: *)
(* action: *)
(
"echo '"
^
show_cmd
wtest
.
cmd
^
"'"
);
(
"echo '"
^
show_cmd
wtest
.
cmd
^
"'"
);
let
diff_alias
=
log_prefix
^
".diff"
in
let
diff_alias
=
subtest_alias
^
".diff"
in
(* diff with oracles *)
(* diff with oracles *)
Format
.
fprintf
result_fmt
Format
.
fprintf
result_fmt
"(rule
\n
\
"(rule
\n
\
...
@@ -1591,8 +1596,16 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
...
@@ -1591,8 +1596,16 @@ let command_string ~env ~result_fmt ~oracle_fmt command =
(deps (alias %S))
\n
\
(deps (alias %S))
\n
\
%a
\n
\
%a
\n
\
)@."
)@."
(
ptests_alias
~
env
)
(
command
.
test_name
^
".diff"
)
diff_alias
diff_alias
pp_enabled_if
command
.
deps
;
Format
.
fprintf
result_fmt
"(alias (name %S)
\n
\
(deps (alias %S))
\n
\
%a
\n
\
)@."
(
ptests_alias
~
env
)
(
command
.
test_name
^
".diff"
)
pp_enabled_if
command
.
deps
pp_enabled_if
command
.
deps
;
;
let
oracle_subdir
=
SubDir
.
oracle_subdir
~
env
command
.
directory
in
let
oracle_subdir
=
SubDir
.
oracle_subdir
~
env
command
.
directory
in
...
@@ -1701,7 +1714,8 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
...
@@ -1701,7 +1714,8 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
(* Detect the problem even if the LOG/BIN is a macro expanded there into an @EMPTY_STRING@ *)
(* Detect the problem even if the LOG/BIN is a macro expanded there into an @EMPTY_STRING@ *)
Format
.
eprintf
"%s: EXEC/EXECNOW#%d without LOG nor BIN target (DEPRECATED): %s@."
Format
.
eprintf
"%s: EXEC/EXECNOW#%d without LOG nor BIN target (DEPRECATED): %s@."
file
nth
wtest
.
cmd
;
file
nth
wtest
.
cmd
;
let
wrapper_basename
=
mk_alias
cmd
"execnow.wtests"
in
let
subtest_alias
=
subtest_alias_prefix
cmd
in
let
wrapper_basename
=
subtest_alias
^
".wtests"
in
if
!
wrapper_cmd
<>
""
then
begin
if
!
wrapper_cmd
<>
""
then
begin
Format
.
fprintf
result_fmt
Format
.
fprintf
result_fmt
"(rule ; %s
\n
\
"(rule ; %s
\n
\
...
@@ -1772,7 +1786,7 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
...
@@ -1772,7 +1786,7 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
(* rule: *)
(* rule: *)
nth
file
nth
file
(* alias: *)
(* alias: *)
(
mk_alias
cmd
"execnow
.show"
)
(
subtest_alias
^
"
.show"
)
(* deps: *)
(* deps: *)
pp_command_deps
cmd
(* to get an updated build even in case of using the result *)
pp_command_deps
cmd
(* to get an updated build even in case of using the result *)
(* enabled_if: *)
(* enabled_if: *)
...
@@ -1780,23 +1794,42 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
...
@@ -1780,23 +1794,42 @@ let process_file ~env ~result_fmt ~oracle_fmt file directory config modules =
(* action: *)
(* action: *)
(
"echo '"
^
show_cmd
wtest
.
cmd
^
"'"
);
(
"echo '"
^
show_cmd
wtest
.
cmd
^
"'"
);
;
;
List
.
iteri
(
fun
n
log
->
if
wtest
.
log
<>
[]
then
begin
Format
.
fprintf
result_fmt
List
.
iteri
(
fun
n
log
->
"(rule ; COMPARE TARGET #%d OF EXECNOW #%d FOR TEST FILE %S
\n
\
Format
.
fprintf
result_fmt
(alias %s)
\n
\
"(rule ; COMPARE TARGET #%d OF EXECNOW #%d FOR TEST FILE %S
\n
\
%a
\n
\
(alias %s)
\n
\
(action (diff %S %S))
\n
\
%a
\n
\
)@."
(action (diff %S %S))
\n
\
(* rule: *)
)@."
n
nth
file
(* rule: *)
(* alias: *)
n
nth
file
(
ptests_alias
~
env
)
(* alias: *)
(* enabled_if: *)
(
subtest_alias
^
".diff"
)
pp_enabled_if
cmd
.
deps
(* enabled_if: *)
(* action: *)
pp_enabled_if
cmd
.
deps
(
SubDir
.
make_file
(
SubDir
.
oracle_dir
~
env
)
log
)
(* action: *)
log
(
SubDir
.
make_file
(
SubDir
.
oracle_dir
~
env
)
log
)
)
wtest
.
log
log
)
wtest
.
log
;
let
diff_alias
=
subtest_alias
^
".diff"
in
Format
.
fprintf
result_fmt
"(alias (name %S)
\n
\
(deps (alias %S))
\n
\
%a
\n
\
)@."
(
cmd
.
test_name
^
".diff"
)
diff_alias
pp_enabled_if
cmd
.
deps
;
Format
.
fprintf
result_fmt
"(alias (name %S)
\n
\
(deps (alias %S))
\n
\
%a
\n
\
)@."
(
ptests_alias
~
env
)
(
cmd
.
test_name
^
".diff"
)
pp_enabled_if
cmd
.
deps
end
in
in
if
config
.
dc_commands
<>
[]
||
config
.
dc_execnow
<>
[]
then
begin
if
config
.
dc_commands
<>
[]
||
config
.
dc_execnow
<>
[]
then
begin
let
pp_list_alias
fmt
l
=
List
.
iter
(
Format
.
fprintf
fmt
"(alias %S)"
)
l
in
let
pp_list_alias
fmt
l
=
List
.
iter
(
Format
.
fprintf
fmt
"(alias %S)"
)
l
in
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment