You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
334 B
11 lines
334 B
#!/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
|