diff options
author | Nikias Bassen | 2023-01-08 05:29:22 +0100 |
---|---|---|
committer | Nikias Bassen | 2023-01-08 05:29:22 +0100 |
commit | 60d291941fadb72b66d11502710add5899e21a2d (patch) | |
tree | a7ecccf74cd8fb7e2596fd3531fd9cccefa39dcd /test/ostep2.test | |
parent | 3f9360e33c13c22648036da42e36f8668e29fb60 (diff) | |
download | libplist-60d291941fadb72b66d11502710add5899e21a2d.tar.gz libplist-60d291941fadb72b66d11502710add5899e21a2d.tar.bz2 |
Add support for OpenStep plist format
Diffstat (limited to 'test/ostep2.test')
-rwxr-xr-x | test/ostep2.test | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/ostep2.test b/test/ostep2.test new file mode 100755 index 0000000..1b991c3 --- /dev/null +++ b/test/ostep2.test @@ -0,0 +1,19 @@ +## -*- sh -*- + +set -e + +DATASRC=$top_srcdir/test/data +DATAOUT=$top_builddir/test/data +TESTFILE=o2.ostep + +if ! test -d "$DATAOUT"; then + mkdir -p $DATAOUT +fi + +export PLIST_OTEST_DEBUG=1 + +echo "Converting" +$top_builddir/test/plist_otest $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out + +echo "Comparing" +$top_builddir/test/plist_cmp $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out |