mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
13 lines
280 B
Bash
13 lines
280 B
Bash
|
#!/bin/bash
|
||
|
# Unit test for static_sandbox example.
|
||
|
|
||
|
source googletest.sh || exit 1
|
||
|
|
||
|
[[ -n "$COVERAGE" ]] && exit 0
|
||
|
|
||
|
BIN=$TEST_SRCDIR/com_google_sandboxed_api/sandboxed_api/sandbox2/examples/static/static_sandbox
|
||
|
|
||
|
"$BIN" || die 'FAILED: it should have exited with 0'
|
||
|
|
||
|
echo 'PASS'
|