Use -t on buildbot test runs.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2010-04-16 22:14:26 +00:00
parent d15946384a
commit 5033c8a6df

View File

@@ -369,8 +369,8 @@ cd tests && runtests.bat
<xsl:param name="options"/>
ERR=0
cd tests || exit 0
./test <xsl:value-of select="normalize-space($options)"/> || ERR=$?
if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui || ERR=$?; fi
./test -t <xsl:value-of select="normalize-space($options)"/> || ERR=$?
if [ -n "$DISPLAY" -a -x test_gui ]; then ./test_gui -t || ERR=$?; fi
exit $ERR
</xsl:template>