File: full-test

package info (click to toggle)
adequate 0.17.6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 488 kB
  • sloc: python: 254; makefile: 111; sh: 75; ansic: 29
file content (13 lines) | stat: -rwxr-xr-x 217 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e -u
if [ "$(id -u)" != 0 ]
then
    printf '%s: you must run this as root.\n' "$0" >&2
    exit 1
fi
cp -a tests/* "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
make 2>&1
make run

# vim:ts=4 sts=4 sw=4 et