mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
6386c55cee
BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
22 lines
631 B
Bash
Executable file
22 lines
631 B
Bash
Executable file
#!/bin/sh
|
|
rm $1
|
|
touch $1
|
|
echo "<table border="1" width=640>" >> $1
|
|
echo "<tr>" >> $1
|
|
echo "<td><b>Name</b></td><td> </td><td width="70%"><b>Description</b></td>" >> $1
|
|
echo "</tr>" >> $1
|
|
testBasic --print_html >> $1
|
|
testBackup --print_html >> $1
|
|
testBasicAsynch --print_html >> $1
|
|
testDict --print_html >> $1
|
|
testBank --print_html >> $1
|
|
testIndex --print_html >> $1
|
|
testNdbApi --print_html >> $1
|
|
testNodeRestart --print_html >> $1
|
|
testOperations --print_html >> $1
|
|
testRestartGci --print_html >> $1
|
|
testScan --print_html >> $1
|
|
testScanInterpreter --print_html >> $1
|
|
testSystemRestart --print_html >> $1
|
|
echo "</table>" >> $1
|
|
|