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.
12 lines
283 B
12 lines
283 B
4 months ago
|
#!/bin/sh -e
|
||
|
|
||
|
if [ "x$SCANNER" = "x" ] ; then
|
||
|
echo "No scanner present, test skipped." 1>&2
|
||
|
exit 77
|
||
|
fi
|
||
|
|
||
|
$SCANNER client-header --strict $1 /dev/null
|
||
|
$SCANNER server-header --strict $1 /dev/null
|
||
|
$SCANNER private-code --strict $1 /dev/null
|
||
|
$SCANNER public-code --strict $1 /dev/null
|