X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e3527f7bc58048611c213a801b20c3d03664c225..84e0e5265dc876c4a6f541211ab2a80d36704201:/tests/test.bkl
diff --git a/tests/test.bkl b/tests/test.bkl
index 868899f3a2..37a7cdb7f4 100644
--- a/tests/test.bkl
+++ b/tests/test.bkl
@@ -48,6 +48,7 @@
hashes/hashes.cpp
intl/intltest.cpp
lists/lists.cpp
+ log/logtest.cpp
longlong/longlongtest.cpp
mbconv/convautotest.cpp
mbconv/mbconvtest.cpp
@@ -76,6 +77,7 @@
streams/memstream.cpp
streams/socketstream.cpp
streams/sstream.cpp
+ streams/stdstream.cpp
streams/tempfile.cpp
streams/textstreamtest.cpp
streams/zlibstream.cpp
@@ -84,6 +86,7 @@
thread/queue.cpp
thread/tls.cpp
uris/uris.cpp
+ uris/url.cpp
vectors/vectors.cpp
weakref/evtconnection.cpp
weakref/weakref.cpp
@@ -91,8 +94,8 @@
xml/xmltest.cpp
net
- base
xml
+ base
@@ -108,6 +111,7 @@
geometry/rect.cpp
geometry/size.cpp
geometry/point.cpp
+ graphics/measuring.cpp
config/config.cpp
controls/comboboxtest.cpp
controls/headerctrltest.cpp
@@ -118,6 +122,7 @@
events/clone.cpp
events/propagation.cpp
font/fonttest.cpp
+ image/image.cpp
image/rawbmp.cpp
html/htmlwindow.cpp
misc/guifuncs.cpp
@@ -146,6 +151,10 @@
testdata.fc
+
+
+ horse.ani horse.bmp horse.cur horse.gif horse.ico horse.jpg
+ horse.pcx horse.png horse.pnm horse.tga horse.tif horse.xpm
@@ -157,15 +166,23 @@
-
-
-
-
- benchmarks/printfbench.cpp
-
- base
-
-
+
+# notice the ugly hack with using CXXWARNINGS: we can't use CPPFLAGS as
+# currently the value in the makefile would be ignored if we did, but
+# warnings don't matter when we expect compilation to fail anyhow so we can
+# use this variable to enable the compilation of code which is supposed to
+# fail
+failtest:
+ @$(RM) test_evthandler.o
+ @for d in GLOBAL STATIC METHOD FUNCTOR NO_HANDLER DERIVED WRONG_CLASS; do \
+ if $(MAKE) CXXWARNINGS=-DTEST_INVALID_BIND_$$d test_evthandler.o 2>/dev/null; then \
+ echo "*** Compilation with TEST_INVALID_BIND_$$d unexpectedly succeeded.">&2; \
+ exit 1; \
+ fi; \
+ done; \
+ exit 0
+
+.PHONY: failtest
+