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.

16 lines
555 B

#!/bin/sh
echo "SLPUnescape"
rm -f SLPUnescape.actual.output
scriptdir=${srcdir}/SLPUnescape
./testslpunescape asdfasdf > SLPUnescape.actual.output
echo >> SLPUnescape.actual.output
./testslpunescape \\28abc >> SLPUnescape.actual.output
echo >> SLPUnescape.actual.output
./testslpunescape abc\\7E >> SLPUnescape.actual.output
echo >> SLPUnescape.actual.output
./testslpunescape \\28\\29\\2C\\5C\\21\\3C\\3D\\3E\\7E >> SLPUnescape.actual.output
echo >> SLPUnescape.actual.output
diff -c ${scriptdir}/SLPUnescape.expected.output SLPUnescape.actual.output