mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 08:56:11 +00:00
10 lines
190 B
Bash
10 lines
190 B
Bash
#!/bin/sh
|
|
|
|
TESTDIR=${srcdir-`pwd`}
|
|
BUILDDIR=${top_builddir-`pwd`}
|
|
|
|
${BUILDDIR}/src/gen4asm -o TEST.out $TESTDIR/TEST.g4a
|
|
if cmp TEST.out ${TESTDIR}/TEST.expected; then : ; else
|
|
exit 1;
|
|
fi
|