File: scan.sh

package info (click to toggle)
rust-wayland-protocols 0.32.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,324 kB
  • sloc: xml: 13,573; sh: 17; python: 15; makefile: 4
file content (11 lines) | stat: -rwxr-xr-x 283 bytes parent folder | download | duplicates (19)
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