Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Open Source Software
Zipr Toolchain
Commits
e3ef7da8
Commit
e3ef7da8
authored
12 years ago
by
jdh8d
Browse files
Options
Downloads
Patches
Plain Diff
Removing built files
Former-commit-id: 0c60fc9c9edd9cec84a9d72acbf0a87fd5fed008
parent
07102309
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tools/do_concolic.sh
+1
-1
1 addition, 1 deletion
tools/do_concolic.sh
tools/ps_analyze.sh
+15
-10
15 additions, 10 deletions
tools/ps_analyze.sh
tools/ps_run.sh
+4
-0
4 additions, 0 deletions
tools/ps_run.sh
with
20 additions
and
11 deletions
tools/do_concolic.sh
+
1
−
1
View file @
e3ef7da8
...
...
@@ -38,7 +38,7 @@ if [ ! -f $sym ]; then
fi
echo
STRATA_GRACE
=
1
$GRACE_HOME
/concolic/src/util/linux/run
$extra_args
-s
$sym
$strata_exe
echo
STRATA_GRACE
=
1
$GRACE_HOME
/concolic/bin/pgrp-timeout
$GRACE_TIMEOUT_VALUE
$GRACE_HOME
/concolic/src/util/linux/run
$extra_args
-s
$sym
$strata_exe
STRATA_GRACE
=
1
$GRACE_HOME
/concolic/bin/pgrp-timeout
$GRACE_TIMEOUT_VALUE
$GRACE_HOME
/concolic/src/util/linux/run
$extra_args
-s
$sym
$strata_exe
...
...
This diff is collapsed.
Click to expand it.
tools/ps_analyze.sh
+
15
−
10
View file @
e3ef7da8
...
...
@@ -336,18 +336,23 @@ check_files()
}
check_for_
iconv
()
check_for_
bad_funcs
()
{
my_name
=
$1
nm
$my_name
|grep iconv_open
>
/dev/null 2> /dev/null
bad_funcs
=
"htons ntohs ntohl htonl iconv_open"
for
ducs_i
in
$bad_funcs
do
nm
$my_name
|grep
$ducs_i
>
/dev/null 2> /dev/null
if
[
$?
=
0
]
;
then
echo
Found iconv
in
executable, we should skip this test.
echo
SKIP
echo
Skip
echo
skip
exit
255
fi
if
[
$?
=
0
]
;
then
echo
"Found bad function (
$ducs_i
) in executable, we should skip this test."
echo
SKIP
echo
Skip
echo
skip
exit
255
fi
done
}
#
...
...
@@ -440,7 +445,7 @@ rm -f $stratafied_exe
# and switch to that dir
cd
$newdir
check_for_
iconv
$newname
.ncexe
check_for_
bad_funcs
$newname
.ncexe
# next, create a location for our log files
mkdir
logs
...
...
This diff is collapsed.
Click to expand it.
tools/ps_run.sh
+
4
−
0
View file @
e3ef7da8
...
...
@@ -94,4 +94,8 @@ if [ -f $datapath/diagnostics.out ]; then
fi
fi
# final check, in case we couldn't catch the signal
if
[
$SAVE_EXIT_CODE
=
139
]
;
then
exit
200
fi
exit
$SAVE_EXIT_CODE
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