Nikias Bassen | 60d2919 | 2023-01-08 05:29:22 +0100 | [diff] [blame] | 1 | ## -*- sh -*- |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | DATASRC=$top_srcdir/test/data |
| 6 | DATAOUT=$top_builddir/test/data |
| 7 | TESTFILE=o1.ostep |
| 8 | |
| 9 | if ! test -d "$DATAOUT"; then |
| 10 | mkdir -p $DATAOUT |
| 11 | fi |
| 12 | |
| 13 | export PLIST_OSTEP_DEBUG=1 |
| 14 | |
| 15 | echo "Converting" |
Sergei Trofimovich | 2cd858c | 2023-10-03 10:41:32 +0100 | [diff] [blame^] | 16 | $top_builddir/test/plist_otest $DATASRC/$TESTFILE $DATAOUT/ostep1.test.out |
Nikias Bassen | 60d2919 | 2023-01-08 05:29:22 +0100 | [diff] [blame] | 17 | |
| 18 | echo "Comparing" |
| 19 | export PLIST_OSTEP_DEBUG=1 |
Sergei Trofimovich | 2cd858c | 2023-10-03 10:41:32 +0100 | [diff] [blame^] | 20 | $top_builddir/test/plist_cmp $DATASRC/$TESTFILE $DATAOUT/ostep1.test.out |