Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Lustrec - public version
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LustreC
Lustrec - public version
Commits
ef8ef3ed
Commit
ef8ef3ed
authored
7 years ago
by
Pierre Loic Garoche
Browse files
Options
Downloads
Patches
Plain Diff
[lustret] bug solved in file path
parent
0d6c2694
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
src/main_lustre_testgen.ml
+13
-9
13 additions, 9 deletions
src/main_lustre_testgen.ml
with
13 additions
and
9 deletions
src/main_lustre_testgen.ml
+
13
−
9
View file @
ef8ef3ed
...
...
@@ -70,13 +70,14 @@ let testgen_source dirname basename extension =
(* if List.mem !cpt [238;371;601;799;875;998] then *)
(* Format.eprintf "Mutant %i: %a -> %a" !cpt Printers.pp_expr orig_e Printers.pp_expr new_e *)
(* ; *)
incr
cpt
;
let
mutant_filename
=
match
!
Options
.
dest_dir
with
|
""
->
(* Mutants are generated in source directory *)
basename
^
".mutant.n"
^
(
string_of_int
!
cpt
)
^
extension
incr
cpt
;
let
mutant_basename
=
(
Filename
.
basename
basename
)
^
".mutant.n"
^
(
string_of_int
!
cpt
)
^
extension
in
let
mutant_filename
=
match
!
Options
.
dest_dir
with
|
""
->
(* Mutants are generated in source directory *)
basename
^
".mutant.n"
^
(
string_of_int
!
cpt
)
^
extension
|
dir
->
(* Mutants are generated in target directory *)
dir
^
"/"
^
(
Filename
.
basename
basename
)
^
".mutant.n"
^
(
string_of_int
!
cpt
)
^
extension
dir
^
"/"
^
mutant_basename
in
let
mutant_out
=
(
try
...
...
@@ -91,7 +92,7 @@ let testgen_source dirname basename extension =
Mutation
.
print_directive
mutation
);
Format
.
fprintf
mutant_fmt
"%a@."
Printers
.
pp_prog
mutant
;
mutation
,
mutation_loc
,
mutant_
fil
ename
mutation
,
mutation_loc
,
mutant_
bas
ename
)
mutants
in
...
...
@@ -99,8 +100,11 @@ let testgen_source dirname basename extension =
(* Printing traceability *)
let
trace_filename
=
(* Mutant report is generated in source directory *)
basename
^
".mutation.json"
match
!
Options
.
dest_dir
with
|
""
->
(* Mutant report is generated in source directory *)
basename
^
".mutation.json"
|
dir
->
(* Mutants are generated in target directory *)
dir
^
"/"
^
(
Filename
.
basename
basename
)
^
".mutation.json"
in
pp_trace
trace_filename
mutation_list
;
(* We stop the process here *)
...
...
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