mirror of
https://github.com/cuberite/TCLAP.git
synced 2025-09-07 19:29:07 -04:00
12 lines
137 B
Bash
Executable File
12 lines
137 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# success
|
|
../examples/test4 -BA --Bs asdf > tmp.out 2>&1
|
|
|
|
if cmp -s tmp.out $srcdir/test19.out; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|
|
|