You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
452 B
18 lines
452 B
10 months ago
|
#!/bin/bash
|
||
|
# Author: Steve Barnes (steve@echo.id.au)
|
||
|
|
||
|
if [ "$CONTAINERTEST" -eq "1" ]; then
|
||
|
t_Log "Running in container -> SKIP"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
t_Log "Running $0 - checking strace runs and returns non-zero exit status."
|
||
|
|
||
|
STRACE=`which strace`
|
||
|
|
||
|
[ "$STRACE" ] || { t_Log "Failed to find strace. Cannot continue."; exit $FAIL; }
|
||
|
|
||
|
$STRACE ls &>/dev/null
|
||
|
|
||
|
[ $? -eq 0 ] || { t_Log "Strace exited with non-zero status. That ain't good..."; exit $FAIL; }
|