mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-08 13:39:58 +00:00
c00d7f55a2
Move and separate test files for mxmldoc.
13 lines
191 B
Bash
Executable File
13 lines
191 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test $# -gt 0; then
|
|
files=$*
|
|
else
|
|
files=*.cxx
|
|
fi
|
|
|
|
rm -f test.xml
|
|
valgrind --logfile-fd=3 --leak-check=yes ../mxmldoc test.xml \
|
|
$files >test.html 2>test.log 3>test.valgrind
|
|
|