Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Lustrec - public version
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
5c3b45a0
Commit
5c3b45a0
authored
6 years ago
by
Pierre Loic Garoche
Browse files
Options
Downloads
Patches
Plain Diff
Lustre test gen mutation: bug solved. The path to the installation was hardcoded.
parent
c95a441d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile.in
+1
-1
1 addition, 1 deletion
Makefile.in
configure.ac
+1
-0
1 addition, 0 deletions
configure.ac
share/FindLustre.cmake.in
+1
-1
1 addition, 1 deletion
share/FindLustre.cmake.in
src/main_lustre_testgen.ml
+2
-2
2 additions, 2 deletions
src/main_lustre_testgen.ml
with
5 additions
and
4 deletions
Makefile.in
+
1
−
1
View file @
5c3b45a0
...
...
@@ -78,7 +78,7 @@ install-base: clean-lusic
mkdir
-p
${
bindir
}
for
x
in
$(
BIN_TARGETS
);
do
install
-m
0755
$(
LOCAL_BINDIR
)
/
$$
x
${
bindir
};
done
mkdir
-p
${
datarootdir
}
install
-m
0655 share/
*
${
datarootdir
}
install
-m
0655 share/
*
.cmake
${
datarootdir
}
mkdir
-p
${
includedir
}
/lustrec
install
-m
0655 include/
*
${
includedir
}
/lustrec
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
1
−
0
View file @
5c3b45a0
...
...
@@ -164,6 +164,7 @@ AC_CONFIG_FILES([Makefile
src/pluginList.ml
src/_tags
src/ocaml_utils.ml
share/FindLustre.cmake
])
AC_OUTPUT
...
...
This diff is collapsed.
Click to expand it.
share/FindLustre.cmake
→
share/FindLustre.cmake
.in
+
1
−
1
View file @
5c3b45a0
...
...
@@ -26,7 +26,7 @@
# The VERBOSE level is a numeric value passed directly to the -verbose
# command line option of the lustre compiler
#
include
(
"
/home/ploc/Local
/share/helpful_functions.cmake"
)
include("
@prefix@
/share/helpful_functions.cmake")
if(LUSTRE_PATH_HINT)
message(STATUS "FindLustre: using PATH HINT: ${LUSTRE_PATH_HINT}")
...
...
This diff is collapsed.
Click to expand it.
src/main_lustre_testgen.ml
+
2
−
2
View file @
5c3b45a0
...
...
@@ -140,8 +140,8 @@ let testgen_source dirname basename extension =
let
cmake_file
=
open_out
cmakelists
in
let
cmake_fmt
=
formatter_of_out_channel
cmake_file
in
Format
.
fprintf
cmake_fmt
"cmake_minimum_required(VERSION 3.5)@."
;
Format
.
fprintf
cmake_fmt
"include(
\"
/home/ploc/Local
/share/helpful_functions.cmake
\"
)@."
;
Format
.
fprintf
cmake_fmt
"include(
\"
/home/ploc/Local
/share/FindLustre.cmake
\"
)@."
;
Format
.
fprintf
cmake_fmt
"include(
\"
%s
/share/helpful_functions.cmake
\"
)@."
Version
.
prefix
;
Format
.
fprintf
cmake_fmt
"include(
\"
%s
/share/FindLustre.cmake
\"
)@."
Version
.
prefix
;
Format
.
fprintf
cmake_fmt
"LUSTREFILES(LFILES ${CMAKE_CURRENT_SOURCE_DIR} )@."
;
Format
.
fprintf
cmake_fmt
"@[<v 2>FOREACH(lus_file ${LFILES})@ "
;
Format
.
fprintf
cmake_fmt
"get_lustre_name_ext(${lus_file} L E)@ "
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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