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
1b5235c0
Commit
1b5235c0
authored
1 year ago
by
Loïc Correnson
Browse files
Options
Downloads
Patches
Plain Diff
[dev] improved test script
parent
5251da75
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/test.sh
+36
-4
36 additions, 4 deletions
bin/test.sh
with
36 additions
and
4 deletions
bin/test.sh
+
36
−
4
View file @
1b5235c0
...
...
@@ -26,6 +26,7 @@ CONFIG="<all>"
VERBOSE
=
UPDATE
=
LOGS
=
COMMIT
=
TESTS
=
SAVE
=
...
...
@@ -66,8 +67,9 @@ function Usage
echo
" -r|--clean clean (remove all) test results (includes -p)"
echo
" -p|--ptests prepare (all) dune files"
echo
" -w|--wp-cache prepare (pull) WP-cache"
echo
" -u|--update
run tests and update (local
) WP-cache"
echo
" -u|--
wp-
update
update (pull+add
) WP-cache"
echo
" -l|--logs print output of tests (single file, no diff)"
echo
" -k|--commit commit results as oracles (single file, no diff)"
echo
" -s|--save save dune logs into
$DUNE_LOG
"
echo
" -v|--verbose print executed commands"
echo
" -h|--help print this help"
...
...
@@ -249,6 +251,9 @@ function TestFile
else
ALIAS
=
$DIR
/
$RESULT
/
${
FILE
%.*
}
.diff
fi
if
[
"
$COMMIT
"
=
"yes"
]
;
then
COMMITS
=
"
${
COMMITS
}
$DIR
/
$RESULT
/
${
FILE
%.*
}
"
fi
Head
"Register test on file
$1
$CFG
"
DUNE_ALIAS
=
"
${
DUNE_ALIAS
}
@
$ALIAS
"
}
...
...
@@ -275,6 +280,27 @@ function Register
done
}
# --------------------------------------------------------------------------
# --- Tests Commits
# --------------------------------------------------------------------------
function
Commits
{
while
[
"
$1
"
!=
""
]
do
cd
_build/default
for
log
in
$1
*
.res.log
do
echo
"Commit
$log
"
dest
=
"
${
log
//result/oracle
}
"
dest
=
"
${
dest
//res.log/res.oracle
}
"
cp
-f
$log
"../../
$dest
"
done
cd
../..
shift
done
}
# --------------------------------------------------------------------------
# --- Tests Numbering
# --------------------------------------------------------------------------
...
...
@@ -305,8 +331,9 @@ function Status
#-- Check wp-cache status
if
[
"
$UPDATE
"
=
"yes"
]
;
then
Head
"
Check
$FRAMAC_WP_CACHEDIR
status"
Head
"
Update
$FRAMAC_WP_CACHEDIR
and check
status"
RequiredTools git
Run git
-C
$FRAMAC_WP_CACHEDIR
add
-A
Run git
-C
$FRAMAC_WP_CACHEDIR
status
-s
fi
}
...
...
@@ -336,7 +363,8 @@ do
"-w"
|
"--wp-cache"
)
PullCache
;;
"-u"
|
"--update"
)
"-u"
|
"--wp-update"
)
PullCache
FRAMAC_WP_CACHE
=
update
UPDATE
=
yes
;;
...
...
@@ -347,8 +375,11 @@ do
"-l"
|
"--logs"
)
LOGS
=
yes
;;
"-k"
|
"--commit"
)
COMMIT
=
yes
;;
"-s"
|
"--save"
)
SAVE
=
yes
SAVE
=
yes
;;
"-d"
|
"--default"
)
CONFIG
=
"<default>"
...
...
@@ -377,4 +408,5 @@ do
done
Register
$TESTS
RunAlias
${
DUNE_ALIAS
}
Commits
${
COMMITS
}
Status
$DUNE_LOG
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