Revert change to add -t to buildbot test runs as some branches don't have it.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64010 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2010-04-17 08:50:35 +00:00
parent 5033c8a6df
commit 152442d40d

View File

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