toolkit/func/core/pkg_strace/10-test-strace.sh
2021-07-04 23:50:25 -07:00

13 lines
260 B
Bash
Executable File

#!/bin/bash
r_log "strace" "Run basic strace tests"
STRACE=$(which strace)
/usr/bin/strace ls &> /dev/null
ret_val=$?
if [ "$ret_val" -ne 0 ]; then
r_log "strace" "strace exited with a non-zero exit code"
r_checkExitStatus 1
else
r_checkExitStatus 0
fi