Ferenc Wagner efc67253fd - command line handling (GUI will follow)
- strip .exe[.so] from test names
- version 2 output
2004-02-19 04:12:42 +00:00

26 lines
414 B
Bash
Executable File

#!/bin/sh
if [ -z "$WINE_BUILD" ]; then
WINE_BUILD="`date +%Y%m%d.%H%M-auto`"
echo "warning: using automatically generated BUILD tag: $WINE_BUILD" 1>&2
fi
echo "/* Automatically generated -- do not edit! */"
echo "STRINGTABLE {"
echo "0 \"$WINE_BUILD\""
i=0
for test
do
i=`expr $i + 1`
echo "$i \"$test\""
done
echo "}"
i=0
for test
do
i=`expr $i + 1`
echo "$i USERDATA \"$test\""
done