Last change
on this file since 97642 was 91612, checked in by vboxsync, 3 years ago |
src/libs: Export libtpms-0.9.0, bugref:10078
|
-
Property svn:executable
set to
*
|
File size:
301 bytes
|
Line | |
---|
1 | #!/usr/bin/env bash
|
---|
2 |
|
---|
3 | # For the license, see the LICENSE file in the root directory.
|
---|
4 |
|
---|
5 | DIR=${PWD}/$(dirname "$0")
|
---|
6 | ROOT=${DIR}/..
|
---|
7 | WORKDIR=$(mktemp -d)
|
---|
8 |
|
---|
9 | function cleanup()
|
---|
10 | {
|
---|
11 | rm -rf ${WORKDIR}
|
---|
12 | }
|
---|
13 |
|
---|
14 | trap "cleanup" QUIT EXIT
|
---|
15 |
|
---|
16 | pushd $WORKDIR
|
---|
17 |
|
---|
18 | ${DIR}/fuzz $@ ${DIR}/corpus-execute-command
|
---|
19 | rc=$?
|
---|
20 |
|
---|
21 | popd
|
---|
22 |
|
---|
23 | exit $rc
|
---|
Note:
See
TracBrowser
for help on using the repository browser.