aboutsummaryrefslogtreecommitdiff
path: root/tests/scan.sh
blob: cad688775909058e6386da56f04dea5b8577c162 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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