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
55a4ee77
Commit
55a4ee77
authored
2 years ago
by
Patrick Baudin
Browse files
Options
Downloads
Patches
Plain Diff
[Script] bin/tests.sh - counts *.{err,res}.log files
parent
e70554a7
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
+10
-10
10 additions, 10 deletions
bin/test.sh
with
10 additions
and
10 deletions
bin/test.sh
+
10
−
10
View file @
55a4ee77
...
...
@@ -28,7 +28,7 @@ UPDATE=
LOGS
=
TESTS
=
LOG_ERR
=
.test-errors.log
VERBOSE_LOG
=
.test-errors.log
FRAMAC_WP_CACHE_GIT
=
git@git.frama-c.com:frama-c/wp-cache.git
...
...
@@ -151,18 +151,18 @@ function PullCache
# --- Test Dir Alias
# --------------------------------------------------------------------------
rm
-rf
$
LOG_ERR
rm
-rf
$
VERBOSE_LOG
function
TestAlias
{
if
[
"
$VERBOSE
"
!=
"yes"
]
;
then
Run dune build
$@
elif
[
"
$
LOG_ERR
"
=
""
]
;
then
elif
[
"
$
VERBOSE_LOG
"
=
""
]
;
then
Run build
--display
short
else
# note: the Run function cannot performs redirection
echo
"> build --display short
$@
2> >(tee -a
$
LOG_ERR
>&2)"
dune build
--display
short
$@
2>
>(
tee
-a
$
LOG_ERR
>
&2
)
echo
"> build --display short
$@
2> >(tee -a
$
VERBOSE_LOG
>&2)"
dune build
--display
short
$@
2>
>(
tee
-a
$
VERBOSE_LOG
>
&2
)
fi
}
...
...
@@ -252,18 +252,18 @@ function CountTests
#-- Count number of .res.log files
if
[
"
$VERBOSE
"
=
"yes"
]
;
then
if
[
-f
"
$
LOG_ERR
"
]
;
then
echo
"# Number of executed frama-c-wtests=
$(
grep
-c
"^frama-c-wtests "
$
LOG_ERR
)
"
Cmd
rm
-f
$
LOG_ERR
if
[
-f
"
$
VERBOSE_LOG
"
]
;
then
echo
"# Number of executed frama-c-wtests=
$(
grep
-c
"^frama-c-wtests "
$
VERBOSE_LOG
)
"
Cmd
rm
-f
$
VERBOSE_LOG
fi
BUILD
=
_build/default
Head
"Number of *.res.log files by test directory..."
Head
"Number of *.
{err,
res
}
.log files by test directory..."
NB
=
for
dir
in
tests src/plugins/
*
/tests
;
do
if
[
-d
"
$dir
"
]
;
then
NB
=
"
$((
find
$BUILD
/
$dir
-
name
\*
.res.log
2
>
/
dev/null
)
|
wc
-
l
)
"
NB
=
"
$((
find
$BUILD
/
$dir
-
name
\*
.err.log
-
or
-
name
\*
.res.log
2
>
/
dev/null
)
|
wc
-
l
)
"
[ "
$NB
" = "
0
" ] || echo "
-
$dir
=
$NB
"
fi
done
...
...
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