projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
propagate scroll wheel events to parent, fixes #15187
[wxWidgets.git]
/
tests
/
runtests.bat
diff --git
a/tests/runtests.bat
b/tests/runtests.bat
index d725f9c5ad8788269527b2d30c3c7fde86b1ef23..967e6f904e197602471212950da795458ae3de76 100644
(file)
--- a/
tests/runtests.bat
+++ b/
tests/runtests.bat
@@
-20,6
+20,11
@@
set failure=0
for /d %%x in (*) do @(
if exist %%x\test.exe (
for /d %%x in (*) do @(
if exist %%x\test.exe (
+ echo.
+ echo ========================================================================
+ echo Running non-GUI unit test
+ echo ========================================================================
+ echo.
%%x\test.exe -t >tmp
REM show the output of the test in the buildbot log:
%%x\test.exe -t >tmp
REM show the output of the test in the buildbot log:
@@
-32,14
+37,18
@@
for /d %%x in (*) do @(
REM separe the output of the test we just executed from the next one
echo.
REM separe the output of the test we just executed from the next one
echo.
- echo.
echo ========================================================================
echo ========================================================================
+ echo Non-GUI test done
echo ========================================================================
echo.
echo ========================================================================
echo.
- echo.
)
if exist %%x\test_gui.exe (
)
if exist %%x\test_gui.exe (
+ echo.
+ echo ========================================================================
+ echo Running GUI unit test
+ echo ========================================================================
+ echo.
%%x\test_gui.exe -t >tmp
REM show the output of the test in the buildbot log:
%%x\test_gui.exe -t >tmp
REM show the output of the test in the buildbot log:
@@
-49,6
+58,12
@@
for /d %%x in (*) do @(
REM (failure=1 is set if "OK" does not appear in the test output)
type tmp | find "OK" >NUL
if ERRORLEVEL 1 set failure=1
REM (failure=1 is set if "OK" does not appear in the test output)
type tmp | find "OK" >NUL
if ERRORLEVEL 1 set failure=1
+
+ echo.
+ echo ========================================================================
+ echo GUI test done
+ echo ========================================================================
+ echo.
)
)
)
)