1234567891011121314151617181920 |
- ## -*- sh -*-
- set -e
- DATASRC=$top_srcdir/test/data
- DATAOUT=$top_builddir/test/data
- TESTFILE=test.strings
- if ! test -d "$DATAOUT"; then
- mkdir -p $DATAOUT
- fi
- export PLIST_OSTEP_DEBUG=1
- echo "Converting"
- $top_builddir/test/plist_otest $DATASRC/$TESTFILE $DATAOUT/ostep-strings.test.out
- echo "Comparing"
- export PLIST_OSTEP_DEBUG=1
- $top_builddir/test/plist_cmp $DATASRC/$TESTFILE $DATAOUT/ostep-strings.test.out
|