blob: 5658f7a98d1a6a73918224e6e83b761619de033f (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh -e
SRC_BASE=meson.build
SRC="$(dirname $0)/../${SRC_BASE}"
DST="$(pwd)/test/tmp/${SRC_BASE}.iso"
mkdir -p test/tmp
rm -f "$DST"
mkisofs -quiet -l -o "$DST" "$SRC"
./test/run_input "$DST/${SRC_BASE}" |diff "$SRC" -
|