mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-24 11:25:30 +00:00
55177569a9
Fix function and enumeration type processing in mxmldoc. Add function type test file. Add stub for new XML schema validation program.
14 lines
251 B
Bash
Executable File
14 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test $# -gt 0; then
|
|
files=$*
|
|
else
|
|
files=*.cxx
|
|
fi
|
|
|
|
rm -f test.xml
|
|
#../mxmldoc-static test.xml $files >test.html 2>test.log
|
|
valgrind --log-fd=3 --leak-check=yes ../mxmldoc-static test.xml \
|
|
$files >test.html 2>test.log 3>test.valgrind
|
|
|