mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-12 16:23:32 +01:00
16 lines
327 B
Bash
Executable File
16 lines
327 B
Bash
Executable File
## -*- sh -*-
|
|
|
|
DATASRC=$top_srcdir/test/data
|
|
DATAOUT=$top_builddir/test/data
|
|
TESTFILE=6.plist
|
|
|
|
if ! test -d "$DATAOUT"; then
|
|
mkdir -p $DATAOUT
|
|
fi
|
|
|
|
echo "Converting"
|
|
$top_builddir/test/plist_test $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out
|
|
|
|
echo "Comparing"
|
|
$top_builddir/test/plist_cmp $DATASRC/$TESTFILE $DATAOUT/$TESTFILE.out
|