File: run-example

package info (click to toggle)
maskprocessor 0.73%2Bgit20170609.1708898-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 204 kB
  • sloc: ansic: 723; makefile: 44; sh: 8
file content (13 lines) | stat: -rwxr-xr-x 299 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# autopkgtest check: Tiny maskprocessor test run
# Author: Sascha Steinbiss <satta@debian.org>
set -e

DATADIR=$(pwd)/debian/tests
WORKDIR=$(mktemp -d)
trap "rm -rf $WORKDIR" 0 INT QUIT ABRT PIPE TERM
cd $WORKDIR

mp64 '?d?a?s' > myout
[ -s myout ]
zcat $DATADIR/out.txt.gz | diff - myout