blob: 6bcfaed82a130268992b3b4de139c24fe33deb32 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# Regression testing: generate .kidl out of dcopidl_test.h and compare with expected baseline
# Usage: $srcdir/run_test.sh $srcdir
srcdir="$1"
builddir=`pwd`
cd $srcdir
"$builddir/dcopidl" ./dcopidl_test.h > $builddir/dcopidl_new_output.kidl || exit 1
diff -u $srcdir/dcopidl_output.kidl $builddir/dcopidl_new_output.kidl
|