12 lines
239 B
Bash
Executable file
12 lines
239 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ./defs || exit 1
|
|
|
|
set -e
|
|
|
|
BYTECODE="never.pr.b regbit.b"
|
|
for bytecode in $BYTECODE; do
|
|
run 0 "$top_builddir/dottynips" "$srcdir/$bytecode" > dotty || exit 1
|
|
"$DOT" -Tps dotty > /dev/null || exit 1
|
|
rm -f dotty
|
|
done
|