sscg/test/help-usage/runtest.sh
Troy Dawson 52f0e1139a RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/sscg#f2c78d1acf9fde9403500b8c3c395b17a2c63544
2020-10-15 09:58:09 -07:00

14 lines
161 B
Bash
Executable File

#!/bin/sh
PACKAGE=sscg
# Assume the test will pass.
result=PASS
sscg --help | grep -q -i '^usage:'
if [ $? -ne 0 ]; then
result=FAIL
fi
echo $result