2004-03-03 22:56:16 +00:00
|
|
|
# =========================================================================
|
|
|
|
# This makefile was generated by
|
2017-10-21 15:42:30 +00:00
|
|
|
# Bakefile 0.2.11 (http://www.bakefile.org)
|
2004-03-03 22:56:16 +00:00
|
|
|
# Do not modify, all changes will be overwritten!
|
|
|
|
# =========================================================================
|
|
|
|
|
|
|
|
|
|
|
|
@MAKE_SET@
|
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
2008-01-23 12:13:07 +00:00
|
|
|
datarootdir = @datarootdir@
|
2004-03-03 22:56:16 +00:00
|
|
|
INSTALL = @INSTALL@
|
2014-03-18 19:31:21 +00:00
|
|
|
SHARED_LD_MODULE_CXX = @SHARED_LD_MODULE_CXX@
|
|
|
|
SO_SUFFIX_MODULE = @SO_SUFFIX_MODULE@
|
2004-03-03 22:56:16 +00:00
|
|
|
EXEEXT = @EXEEXT@
|
2006-02-10 19:27:51 +00:00
|
|
|
WINDRES = @WINDRES@
|
2014-03-18 19:31:21 +00:00
|
|
|
PIC_FLAG = @PIC_FLAG@
|
2009-05-02 18:29:33 +00:00
|
|
|
ICC_PCH_USE_SWITCH = @ICC_PCH_USE_SWITCH@
|
2006-11-04 20:39:49 +00:00
|
|
|
BK_DEPS = @BK_DEPS@
|
|
|
|
BK_MAKE_PCH = @BK_MAKE_PCH@
|
2004-03-03 22:56:16 +00:00
|
|
|
srcdir = @srcdir@
|
|
|
|
top_srcdir = @top_srcdir@
|
2014-03-18 19:31:21 +00:00
|
|
|
DLLPREFIX_MODULE = @DLLPREFIX_MODULE@
|
2006-11-04 20:39:49 +00:00
|
|
|
LIBS = @LIBS@
|
2004-03-03 22:56:16 +00:00
|
|
|
CXX = @CXX@
|
|
|
|
CXXFLAGS = @CXXFLAGS@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
LDFLAGS = @LDFLAGS@
|
2004-09-22 15:08:33 +00:00
|
|
|
WX_LIB_FLAVOUR = @WX_LIB_FLAVOUR@
|
2004-03-03 22:56:16 +00:00
|
|
|
TOOLKIT = @TOOLKIT@
|
|
|
|
TOOLKIT_LOWERCASE = @TOOLKIT_LOWERCASE@
|
|
|
|
TOOLKIT_VERSION = @TOOLKIT_VERSION@
|
2005-11-25 05:17:36 +00:00
|
|
|
TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
|
2004-03-03 22:56:16 +00:00
|
|
|
EXTRALIBS = @EXTRALIBS@
|
2008-03-29 22:55:35 +00:00
|
|
|
EXTRALIBS_XML = @EXTRALIBS_XML@
|
2008-10-15 15:55:25 +00:00
|
|
|
EXTRALIBS_HTML = @EXTRALIBS_HTML@
|
2009-01-11 00:39:22 +00:00
|
|
|
EXTRALIBS_MEDIA = @EXTRALIBS_MEDIA@
|
2004-10-18 17:02:37 +00:00
|
|
|
EXTRALIBS_GUI = @EXTRALIBS_GUI@
|
2007-07-04 20:56:52 +00:00
|
|
|
CXXWARNINGS = @CXXWARNINGS@
|
2004-03-03 22:56:16 +00:00
|
|
|
HOST_SUFFIX = @HOST_SUFFIX@
|
|
|
|
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
|
2014-08-24 01:50:11 +00:00
|
|
|
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
|
2006-11-04 20:39:49 +00:00
|
|
|
wx_top_builddir = @wx_top_builddir@
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
### Variables: ###
|
|
|
|
|
|
|
|
DESTDIR =
|
2013-11-21 13:47:05 +00:00
|
|
|
WX_RELEASE = 3.1
|
2018-02-19 23:08:01 +00:00
|
|
|
WX_VERSION = $(WX_RELEASE).2
|
2006-11-04 20:39:49 +00:00
|
|
|
LIBDIRNAME = $(wx_top_builddir)/lib
|
2004-11-22 05:00:19 +00:00
|
|
|
TEST_CXXFLAGS = $(__test_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
|
2009-09-12 13:38:08 +00:00
|
|
|
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
|
|
|
$(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -DwxUSE_GUI=0 \
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
-I$(top_srcdir)/3rdparty/catch/include $(CXXWARNINGS) $(SAMPLES_CXXFLAGS) \
|
|
|
|
$(CPPFLAGS) $(CXXFLAGS)
|
2004-03-03 22:56:16 +00:00
|
|
|
TEST_OBJECTS = \
|
|
|
|
test_test.o \
|
2009-09-19 08:51:11 +00:00
|
|
|
test_anytest.o \
|
2004-11-11 04:51:25 +00:00
|
|
|
test_archivetest.o \
|
2005-02-10 14:06:08 +00:00
|
|
|
test_ziptest.o \
|
2006-10-27 10:11:46 +00:00
|
|
|
test_tartest.o \
|
2004-10-27 22:47:26 +00:00
|
|
|
test_arrays.o \
|
2007-07-10 02:00:51 +00:00
|
|
|
test_base64.o \
|
2008-04-12 17:03:09 +00:00
|
|
|
test_cmdlinetest.o \
|
2007-07-21 23:51:19 +00:00
|
|
|
test_fileconf.o \
|
2010-06-02 14:12:07 +00:00
|
|
|
test_regconf.o \
|
2004-11-08 00:17:00 +00:00
|
|
|
test_datetimetest.o \
|
2009-02-01 23:20:27 +00:00
|
|
|
test_evthandler.o \
|
2013-07-03 00:26:13 +00:00
|
|
|
test_evtlooptest.o \
|
2009-10-22 11:35:43 +00:00
|
|
|
test_evtsource.o \
|
2010-05-16 15:44:17 +00:00
|
|
|
test_stopwatch.o \
|
2008-10-27 22:04:42 +00:00
|
|
|
test_timertest.o \
|
2009-03-23 16:23:44 +00:00
|
|
|
test_exec.o \
|
2010-06-19 12:32:57 +00:00
|
|
|
test_dir.o \
|
2010-06-13 14:30:55 +00:00
|
|
|
test_filefn.o \
|
2009-09-12 22:40:42 +00:00
|
|
|
test_filetest.o \
|
2005-02-12 21:53:51 +00:00
|
|
|
test_filekind.o \
|
2004-11-08 00:17:00 +00:00
|
|
|
test_filenametest.o \
|
|
|
|
test_filesystest.o \
|
|
|
|
test_fontmaptest.o \
|
|
|
|
test_formatconvertertest.o \
|
2009-10-22 11:35:43 +00:00
|
|
|
test_fswatchertest.o \
|
2004-05-22 17:52:44 +00:00
|
|
|
test_hashes.o \
|
2010-06-21 21:03:47 +00:00
|
|
|
test_output.o \
|
|
|
|
test_input.o \
|
2007-03-26 21:12:13 +00:00
|
|
|
test_intltest.o \
|
2004-12-08 22:39:22 +00:00
|
|
|
test_lists.o \
|
2009-07-07 12:19:34 +00:00
|
|
|
test_logtest.o \
|
2004-11-08 00:17:00 +00:00
|
|
|
test_longlongtest.o \
|
2006-04-05 15:07:06 +00:00
|
|
|
test_convautotest.o \
|
2004-11-08 00:17:00 +00:00
|
|
|
test_mbconvtest.o \
|
2010-06-13 14:30:55 +00:00
|
|
|
test_dynamiclib.o \
|
|
|
|
test_environ.o \
|
2010-06-14 15:12:37 +00:00
|
|
|
test_metatest.o \
|
2008-08-02 22:49:01 +00:00
|
|
|
test_misctests.o \
|
2010-06-06 14:21:27 +00:00
|
|
|
test_module.o \
|
|
|
|
test_pathlist.o \
|
2009-11-19 19:27:24 +00:00
|
|
|
test_typeinfotest.o \
|
2008-07-14 02:19:34 +00:00
|
|
|
test_ipc.o \
|
2008-10-12 20:45:29 +00:00
|
|
|
test_socket.o \
|
2004-11-08 00:17:00 +00:00
|
|
|
test_regextest.o \
|
|
|
|
test_wxregextest.o \
|
2005-07-20 13:29:15 +00:00
|
|
|
test_scopeguardtest.o \
|
2007-10-09 00:10:07 +00:00
|
|
|
test_iostream.o \
|
2011-01-19 10:47:40 +00:00
|
|
|
test_numformatter.o \
|
2004-04-20 18:55:09 +00:00
|
|
|
test_strings.o \
|
2004-05-21 07:59:14 +00:00
|
|
|
test_stdstrings.o \
|
2005-12-22 00:11:26 +00:00
|
|
|
test_tokenizer.o \
|
2007-03-17 10:26:10 +00:00
|
|
|
test_unichar.o \
|
2004-04-30 20:26:14 +00:00
|
|
|
test_unicode.o \
|
2007-03-17 10:26:10 +00:00
|
|
|
test_vararg.o \
|
2004-06-03 19:48:31 +00:00
|
|
|
test_crt.o \
|
2006-06-29 07:16:39 +00:00
|
|
|
test_vsnprintf.o \
|
2017-02-23 19:01:48 +00:00
|
|
|
test_hexconv.o \
|
2004-12-08 22:39:22 +00:00
|
|
|
test_datastreamtest.o \
|
2004-04-18 19:26:20 +00:00
|
|
|
test_ffilestream.o \
|
2006-10-23 21:58:35 +00:00
|
|
|
test_fileback.o \
|
2004-04-18 19:26:20 +00:00
|
|
|
test_filestream.o \
|
2008-06-15 18:02:23 +00:00
|
|
|
test_iostreams.o \
|
2005-02-08 16:10:29 +00:00
|
|
|
test_largefile.o \
|
2018-03-30 19:55:36 +00:00
|
|
|
test_lzmastream.o \
|
2004-04-18 19:26:20 +00:00
|
|
|
test_memstream.o \
|
2008-07-08 00:19:54 +00:00
|
|
|
test_socketstream.o \
|
wx-config2.6
Designed to be resiliant against future cut and paste coders. Any
gnarly parts are black boxed away nicely to avoid accidents and have
integrated debugging support for trivial sanity checking in the event
of modification or trouble. In this way the major operations are all
cleanly separated making any or all of them simply extensible, or
replaceable in the face of future needs. Functions now all have api
descriptions. If you rely on a function to act in some way, please
document it to safeguard yourself against inadvertant interface
changes by others.
Everything now runs top top to bottom, we don't try to output things
as fast as we can read them anymore, instead we read everything in,
sort over it just once without the need for 'just in case' temp's, and
then output whatever we were asked for only when we are sure we have
the correct answer. Almost all key data aims to be constant past the
point of its initialisation so side effect creep and trouble with half
(re)initialised data should be significantly reduced in future. In
almost every case it is easy and clean to simply delay initialisation
until all required input channels have been emptied. If you like,
think of it as mostly being one big constructor, with a little
destructor at the end which outputs what you requested. At core, it
is simply a generated config file -- with some user friendly logic for
extracting its data and finding related files.
Removed references to --gl-libs in --help. It still exists, but if
its deprecated, no need to fill space in a compact help summary. It
will remain documented (as deprecated) in the man page.
Removed references to arcane order rules for arguments. Those
limitations don't exist anymore, though the options are backward
compatible in all other respects from the user pov.
Removed references to --inplace, it doesn't need to be in the summary
help either. It also is still accepted as an option, but there is no
value in passing it, an uninstalled wx-config will automatically
behave correctly. When you need --inplace, it will supply that
behaviour for you (but there is no harm in typing it your self in that
case). If you do type it when you don't need it, bad things will
probably happen just like they always would have.
Along with items above, generally compressed --help text to fit on
even a traditional sized terminal without the need for paging. If we
want more detailed help built in, it should be broken into separate
pages, and this would be a trivial extension.
Command line input is now controlled by a small generic parser. You
define what options you want and what groups you want them in by
initialising them as lists. It runs over all the input and fills
corresponding psuedo-hashes from it for you to use as you please
later.
Added a validator for it to check yes/no options.
Use posix extended regex instead of gnu 'basic' regex extensions,
grep -E is portable, if gmake is not a requirement, we surely can't
push gnu grep on people.
Made --list more user friendly. It will now always list the current
wx-config if it matches the feature spec, though it will warn if that
config is not in the specified --prefix. Alternate configs that match
(if any) are listed separately. An unqualified call to wx-config --list
will always return (at least) the config that was called. We can never
have a 'hanging' wx-config shell with no real implementation to back
it up anymore so we can always return a sensible result for the user.
A wx-config anywhere can list (and hence use) the configs installed in
any (other) prefix.
Delegation. Too big a topic to remark on in depth here, see the code
for a fuller description. With everything being nicely constant and
aligned to the respective library build, then aside from delegation,
wx-config really is _just_ a config file (albeit with a layer of logic
around the constants), and each wx-config carries a set of defaults
which match perfectly the library build that it was generated with.
If you choose a set of features that it can match, it will answer all
your queries for them, if it cannot, it will seek to delegate to the
config that is most like itself, but which can supply all the features
you specified. This should be completely compatible with any set of
options that returned a sensible result previously, and produce a
sensible result in many cases where previously the collating order
of your locale or the nuances of your filesystem operations would
decide which library it thought you wanted.
Sort duplicates out of the list of libraries and trickle shared
dependencies down the list to properly support static builds.
Added the inplace-config tweak for use in the build tree. This works
like any other config, except it presets the default prefix to point
at the build dir instead of the configured prefix that will become the
default if this build is installed. It provides the behaviour of
--inplace when $build_dir/wx-config is called without also specifying
a different --{exec-,}prefix or any feature flags that it is
incompatible with. In that event, it will try to delegate as per the
normal rules.
The inplace wrapper is not installed with the primary config which
cleanly disables it for system installs. It will be invalidated if
the build (or source) dir is moved, but will be revalidated if the
build tree is subseqently updated with ./config.status --recheck &&
config.status (which it probably would need to be to build anyway for
other reasons at present too)
Enabled full support for static builds again, promoted --static to a
full feature option. Fixed --ld to return something for them too.
Added --flavour, similar to the existing --vendor, but for autoconf
builds. These will probably want to be streamlined further.
Broadened the use of release and flavour labels to support better
concurrent installs.
Fix bit rot in make-dist due to new/deleted files.
Whittled down the number of obsolete and duplicated substitution
variables in configure.in, and lowercased some variables we no longer
export for substitution. Use the autoconf macros to generate files
where we want them instead of making them someplace and then moving
them all about. Remove extra files and symlinks added for the two
part wx-config version.
Removed the debian -contrib packages. We'll use multi-lib support
to manage them from now on and indiviual libs can be split out along
functional lines if required. This means the retained contribs will
now get __WXDEBUG__ versions packaged too.
Removed conflicts from almost packages except i18n and wxPython. All
packages now either update or install alongside any existing ones.
Added support for flavoured debs as well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-21 17:16:29 +00:00
|
|
|
test_sstream.o \
|
2009-05-02 18:29:33 +00:00
|
|
|
test_stdstream.o \
|
2005-03-13 16:20:51 +00:00
|
|
|
test_tempfile.o \
|
2004-11-22 05:00:19 +00:00
|
|
|
test_textstreamtest.o \
|
2004-06-19 14:01:44 +00:00
|
|
|
test_zlibstream.o \
|
2006-04-01 14:04:59 +00:00
|
|
|
test_textfiletest.o \
|
2007-07-04 20:56:52 +00:00
|
|
|
test_atomic.o \
|
2010-05-10 21:48:24 +00:00
|
|
|
test_misc.o \
|
2007-11-01 01:35:20 +00:00
|
|
|
test_queue.o \
|
2008-08-29 23:28:42 +00:00
|
|
|
test_tls.o \
|
2010-05-29 07:56:08 +00:00
|
|
|
test_ftp.o \
|
2007-07-07 10:09:42 +00:00
|
|
|
test_uris.o \
|
2009-06-01 11:46:36 +00:00
|
|
|
test_url.o \
|
2008-01-13 02:48:17 +00:00
|
|
|
test_vectors.o \
|
|
|
|
test_evtconnection.o \
|
2008-02-10 17:03:23 +00:00
|
|
|
test_weakref.o \
|
2008-03-29 22:55:35 +00:00
|
|
|
test_xlocale.o \
|
|
|
|
test_xmltest.o
|
2008-10-08 15:44:49 +00:00
|
|
|
TEST_ODEP = $(_____pch_testprec_test_testprec_h_gch___depname)
|
2014-03-18 19:31:21 +00:00
|
|
|
TEST_DRAWING_CXXFLAGS = $(__test_drawing_PCH_INC) -D__WX$(TOOLKIT)__ \
|
|
|
|
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
|
|
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) \
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
-DwxUSE_GUI=0 -I$(top_srcdir)/3rdparty/catch/include $(CXXWARNINGS) \
|
|
|
|
$(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
|
2014-03-18 19:31:21 +00:00
|
|
|
TEST_DRAWING_OBJECTS = \
|
|
|
|
test_drawing_test.o \
|
|
|
|
test_drawing_drawing.o \
|
|
|
|
test_drawing_plugindriver.o \
|
2014-05-17 12:29:21 +00:00
|
|
|
test_drawing_basictest.o \
|
|
|
|
test_drawing_fonttest.o
|
2014-03-18 19:31:21 +00:00
|
|
|
TEST_DRAWING_ODEP = \
|
|
|
|
$(_____pch_testprec_test_drawing_testprec_h_gch___depname)
|
|
|
|
TEST_DRAWINGPLUGIN_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
|
|
|
|
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
|
|
|
|
$(__THREAD_DEFINE_p) $(__DLLFLAG_p) $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) \
|
|
|
|
$(CXXFLAGS)
|
|
|
|
TEST_DRAWINGPLUGIN_OBJECTS = \
|
|
|
|
test_drawingplugin_pluginsample.o
|
2004-12-12 12:35:45 +00:00
|
|
|
TEST_GUI_CXXFLAGS = $(__test_gui_PCH_INC) -D__WX$(TOOLKIT)__ \
|
2009-09-12 13:38:08 +00:00
|
|
|
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
|
|
|
|
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) \
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
-I$(srcdir)/../samples -I$(top_srcdir)/3rdparty/catch/include \
|
|
|
|
$(CXXWARNINGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
|
2004-12-12 12:35:45 +00:00
|
|
|
TEST_GUI_OBJECTS = \
|
|
|
|
$(__test_gui___win32rc) \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_asserthelper.o \
|
2004-12-12 19:25:46 +00:00
|
|
|
test_gui_test.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_testableframe.o \
|
2004-12-28 18:18:04 +00:00
|
|
|
test_gui_rect.o \
|
|
|
|
test_gui_size.o \
|
2007-07-21 23:51:19 +00:00
|
|
|
test_gui_point.o \
|
2011-10-18 21:56:48 +00:00
|
|
|
test_gui_region.o \
|
2010-03-28 23:20:49 +00:00
|
|
|
test_gui_bitmap.o \
|
2009-09-19 16:29:50 +00:00
|
|
|
test_gui_colour.o \
|
2010-03-10 13:57:47 +00:00
|
|
|
test_gui_ellipsization.o \
|
2009-04-16 14:49:28 +00:00
|
|
|
test_gui_measuring.o \
|
2011-04-26 22:57:20 +00:00
|
|
|
test_gui_affinematrix.o \
|
2014-07-26 01:34:50 +00:00
|
|
|
test_gui_boundingbox.o \
|
2016-06-29 18:51:15 +00:00
|
|
|
test_gui_clippingbox.o \
|
2016-09-18 21:09:44 +00:00
|
|
|
test_gui_graphmatrix.o \
|
2018-07-02 18:08:29 +00:00
|
|
|
test_gui_graphpath.o \
|
2007-09-26 00:28:31 +00:00
|
|
|
test_gui_config.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_bitmapcomboboxtest.o \
|
|
|
|
test_gui_bitmaptogglebuttontest.o \
|
|
|
|
test_gui_bookctrlbasetest.o \
|
|
|
|
test_gui_buttontest.o \
|
|
|
|
test_gui_checkboxtest.o \
|
|
|
|
test_gui_checklistboxtest.o \
|
|
|
|
test_gui_choicebooktest.o \
|
|
|
|
test_gui_choicetest.o \
|
2008-09-19 10:18:30 +00:00
|
|
|
test_gui_comboboxtest.o \
|
2011-08-10 15:24:25 +00:00
|
|
|
test_gui_dataviewctrltest.o \
|
2011-06-19 22:46:45 +00:00
|
|
|
test_gui_datepickerctrltest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_frametest.o \
|
|
|
|
test_gui_gaugetest.o \
|
|
|
|
test_gui_gridtest.o \
|
2008-12-03 21:53:10 +00:00
|
|
|
test_gui_headerctrltest.o \
|
2010-11-27 11:34:34 +00:00
|
|
|
test_gui_htmllboxtest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_hyperlinkctrltest.o \
|
|
|
|
test_gui_itemcontainertest.o \
|
2010-03-21 21:39:15 +00:00
|
|
|
test_gui_label.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_listbasetest.o \
|
|
|
|
test_gui_listbooktest.o \
|
|
|
|
test_gui_listboxtest.o \
|
2008-12-03 21:53:10 +00:00
|
|
|
test_gui_listctrltest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_listviewtest.o \
|
2011-02-27 12:46:42 +00:00
|
|
|
test_gui_markuptest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_notebooktest.o \
|
2010-12-20 13:55:40 +00:00
|
|
|
test_gui_ownerdrawncomboboxtest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_pickerbasetest.o \
|
|
|
|
test_gui_pickertest.o \
|
|
|
|
test_gui_radioboxtest.o \
|
|
|
|
test_gui_radiobuttontest.o \
|
|
|
|
test_gui_rearrangelisttest.o \
|
|
|
|
test_gui_richtextctrltest.o \
|
2013-01-20 02:09:44 +00:00
|
|
|
test_gui_searchctrltest.o \
|
2013-06-23 16:38:51 +00:00
|
|
|
test_gui_simplebooktest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_slidertest.o \
|
|
|
|
test_gui_spinctrldbltest.o \
|
|
|
|
test_gui_spinctrltest.o \
|
2008-03-31 15:22:10 +00:00
|
|
|
test_gui_textctrltest.o \
|
2008-09-19 08:55:25 +00:00
|
|
|
test_gui_textentrytest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_togglebuttontest.o \
|
|
|
|
test_gui_toolbooktest.o \
|
|
|
|
test_gui_treebooktest.o \
|
2009-01-17 13:16:25 +00:00
|
|
|
test_gui_treectrltest.o \
|
2011-08-27 14:11:03 +00:00
|
|
|
test_gui_treelistctrltest.o \
|
2010-11-13 15:03:20 +00:00
|
|
|
test_gui_virtlistctrltest.o \
|
2011-09-11 10:12:19 +00:00
|
|
|
test_gui_webtest.o \
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_windowtest.o \
|
2012-11-01 16:45:11 +00:00
|
|
|
test_gui_dialogtest.o \
|
2009-03-22 21:31:34 +00:00
|
|
|
test_gui_clone.o \
|
2013-07-03 00:26:13 +00:00
|
|
|
test_gui_evtlooptest.o \
|
2009-01-16 16:21:50 +00:00
|
|
|
test_gui_propagation.o \
|
2010-09-11 10:18:31 +00:00
|
|
|
test_gui_keyboard.o \
|
2013-07-03 00:32:40 +00:00
|
|
|
test_gui_exec.o \
|
2009-03-18 15:32:28 +00:00
|
|
|
test_gui_fonttest.o \
|
2009-06-01 11:46:36 +00:00
|
|
|
test_gui_image.o \
|
2008-05-30 19:30:23 +00:00
|
|
|
test_gui_rawbmp.o \
|
2011-01-13 14:49:55 +00:00
|
|
|
test_gui_htmlparser.o \
|
2008-10-15 15:55:25 +00:00
|
|
|
test_gui_htmlwindow.o \
|
2018-05-23 16:12:26 +00:00
|
|
|
test_gui_htmprint.o \
|
2010-12-03 12:39:57 +00:00
|
|
|
test_gui_accelentry.o \
|
2010-11-13 15:03:02 +00:00
|
|
|
test_gui_menu.o \
|
2008-09-22 16:03:45 +00:00
|
|
|
test_gui_guifuncs.o \
|
2008-05-25 02:56:22 +00:00
|
|
|
test_gui_selstoretest.o \
|
2009-01-11 00:39:22 +00:00
|
|
|
test_gui_garbage.o \
|
2013-10-14 15:08:35 +00:00
|
|
|
test_gui_safearrayconverttest.o \
|
2009-03-24 23:13:02 +00:00
|
|
|
test_gui_settings.o \
|
2008-12-27 11:14:10 +00:00
|
|
|
test_gui_socket.o \
|
2017-12-14 23:43:24 +00:00
|
|
|
test_gui_tlw.o \
|
|
|
|
test_gui_dataview.o \
|
2010-03-18 15:07:10 +00:00
|
|
|
test_gui_boxsizer.o \
|
2015-04-04 16:19:49 +00:00
|
|
|
test_gui_gridsizer.o \
|
2011-02-08 13:36:13 +00:00
|
|
|
test_gui_wrapsizer.o \
|
2011-05-01 14:58:58 +00:00
|
|
|
test_gui_toplevel.o \
|
2011-01-19 10:48:28 +00:00
|
|
|
test_gui_valnum.o \
|
2008-05-25 03:08:31 +00:00
|
|
|
test_gui_clientsize.o \
|
2010-11-07 14:00:59 +00:00
|
|
|
test_gui_setsize.o \
|
|
|
|
test_gui_xrctest.o
|
2008-10-08 15:44:49 +00:00
|
|
|
TEST_GUI_ODEP = $(_____pch_testprec_test_gui_testprec_h_gch___depname)
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
### Conditionally set variables: ###
|
|
|
|
|
|
|
|
@COND_DEPS_TRACKING_0@CXXC = $(CXX)
|
2006-11-04 20:39:49 +00:00
|
|
|
@COND_DEPS_TRACKING_1@CXXC = $(BK_DEPS) $(CXX)
|
2004-03-03 22:56:16 +00:00
|
|
|
@COND_USE_GUI_0@PORTNAME = base
|
|
|
|
@COND_USE_GUI_1@PORTNAME = $(TOOLKIT_LOWERCASE)$(TOOLKIT_VERSION)
|
|
|
|
@COND_TOOLKIT_MAC@WXBASEPORT = _carbon
|
2009-09-12 13:38:08 +00:00
|
|
|
@COND_BUILD_debug@WXDEBUGFLAG = d
|
2004-03-03 22:56:16 +00:00
|
|
|
@COND_UNICODE_1@WXUNICODEFLAG = u
|
|
|
|
@COND_WXUNIV_1@WXUNIVNAME = univ
|
2004-10-18 17:02:37 +00:00
|
|
|
@COND_MONOLITHIC_0@EXTRALIBS_FOR_BASE = $(EXTRALIBS)
|
2011-12-25 13:28:01 +00:00
|
|
|
@COND_MONOLITHIC_1@EXTRALIBS_FOR_BASE = $(EXTRALIBS) \
|
|
|
|
@COND_MONOLITHIC_1@ $(EXTRALIBS_XML) $(EXTRALIBS_GUI)
|
2004-12-12 12:35:45 +00:00
|
|
|
@COND_MONOLITHIC_0@EXTRALIBS_FOR_GUI = $(EXTRALIBS_GUI)
|
|
|
|
@COND_MONOLITHIC_1@EXTRALIBS_FOR_GUI =
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_GCC_PCH_1@__test_PCH_INC = -I./.pch/testprec_test
|
2009-05-02 18:29:33 +00:00
|
|
|
@COND_ICC_PCH_1@__test_PCH_INC = $(ICC_PCH_USE_SWITCH) \
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_ICC_PCH_1@ ./.pch/testprec_test/testprec.h.gch
|
|
|
|
@COND_USE_PCH_1@_____pch_testprec_test_testprec_h_gch___depname \
|
|
|
|
@COND_USE_PCH_1@ = ./.pch/testprec_test/testprec.h.gch
|
2011-02-05 20:25:09 +00:00
|
|
|
@COND_MONOLITHIC_1@__LIB_PNG_IF_MONO_p = $(__LIB_PNG_p)
|
2014-04-01 22:49:04 +00:00
|
|
|
@COND_USE_GUI_1@__test_drawing___depname = test_drawing$(EXEEXT)
|
2014-03-18 19:31:21 +00:00
|
|
|
@COND_GCC_PCH_1@__test_drawing_PCH_INC = -I./.pch/testprec_test_drawing
|
|
|
|
@COND_ICC_PCH_1@__test_drawing_PCH_INC = \
|
|
|
|
@COND_ICC_PCH_1@ $(ICC_PCH_USE_SWITCH) \
|
|
|
|
@COND_ICC_PCH_1@ ./.pch/testprec_test_drawing/testprec.h.gch
|
|
|
|
@COND_USE_PCH_1@_____pch_testprec_test_drawing_testprec_h_gch___depname \
|
|
|
|
@COND_USE_PCH_1@ = ./.pch/testprec_test_drawing/testprec.h.gch
|
2014-05-16 10:53:55 +00:00
|
|
|
@COND_SHARED_1_USE_GUI_1@__test_drawingplugin___depname \
|
|
|
|
@COND_SHARED_1_USE_GUI_1@ = \
|
|
|
|
@COND_SHARED_1_USE_GUI_1@ $(DLLPREFIX_MODULE)test_drawingplugin.$(SO_SUFFIX_MODULE)
|
2004-12-12 12:35:45 +00:00
|
|
|
@COND_USE_GUI_1@__test_gui___depname = test_gui$(EXEEXT)
|
2017-10-21 15:42:30 +00:00
|
|
|
@COND_WXUNIV_1@__WXUNIV_DEFINE_p_6 = --define __WXUNIVERSAL__
|
|
|
|
@COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p_6 = --define wxDEBUG_LEVEL=0
|
|
|
|
@COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p_6 = --define wxNO_EXCEPTIONS
|
|
|
|
@COND_USE_RTTI_0@__RTTI_DEFINE_p_6 = --define wxNO_RTTI
|
|
|
|
@COND_USE_THREADS_0@__THREAD_DEFINE_p_6 = --define wxNO_THREADS
|
|
|
|
@COND_SHARED_1@__DLLFLAG_p_6 = --define WXUSINGDLL
|
|
|
|
@COND_TOOLKIT_MSW@__RCDEFDIR_p = --include-dir \
|
2005-11-25 05:17:36 +00:00
|
|
|
@COND_TOOLKIT_MSW@ $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME)
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@__test_gui_app_Contents_PkgInfo___depname \
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ = test_gui.app/Contents/PkgInfo
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@__test_gui_bundle___depname \
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ = test_gui_bundle
|
2004-12-12 12:35:45 +00:00
|
|
|
@COND_TOOLKIT_MAC@____test_gui_BUNDLE_TGT_REF_DEP = \
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_TOOLKIT_MAC@ $(__test_gui_app_Contents_PkgInfo___depname)
|
2008-09-19 08:55:25 +00:00
|
|
|
@COND_TOOLKIT_OSX_CARBON@____test_gui_BUNDLE_TGT_REF_DEP \
|
|
|
|
@COND_TOOLKIT_OSX_CARBON@ = $(__test_gui_app_Contents_PkgInfo___depname)
|
|
|
|
@COND_TOOLKIT_OSX_COCOA@____test_gui_BUNDLE_TGT_REF_DEP \
|
|
|
|
@COND_TOOLKIT_OSX_COCOA@ = $(__test_gui_app_Contents_PkgInfo___depname)
|
|
|
|
@COND_TOOLKIT_OSX_IPHONE@____test_gui_BUNDLE_TGT_REF_DEP \
|
|
|
|
@COND_TOOLKIT_OSX_IPHONE@ = $(__test_gui_app_Contents_PkgInfo___depname)
|
|
|
|
@COND_TOOLKIT_COCOA@____test_gui_BUNDLE_TGT_REF_DEP = \
|
|
|
|
@COND_TOOLKIT_COCOA@ $(__test_gui_app_Contents_PkgInfo___depname)
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
@COND_PLATFORM_WIN32_1@__test_gui___win32rc = test_gui_sample_rc.o
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_GCC_PCH_1@__test_gui_PCH_INC = -I./.pch/testprec_test_gui
|
2009-05-02 18:29:33 +00:00
|
|
|
@COND_ICC_PCH_1@__test_gui_PCH_INC = $(ICC_PCH_USE_SWITCH) \
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_ICC_PCH_1@ ./.pch/testprec_test_gui/testprec.h.gch
|
|
|
|
@COND_USE_PCH_1@_____pch_testprec_test_gui_testprec_h_gch___depname \
|
|
|
|
@COND_USE_PCH_1@ = ./.pch/testprec_test_gui/testprec.h.gch
|
2011-10-30 14:19:59 +00:00
|
|
|
COND_MONOLITHIC_0_USE_WEBVIEW_1___WXLIB_WEBVIEW_p = \
|
2011-09-11 10:12:19 +00:00
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview-$(WX_RELEASE)$(HOST_SUFFIX)
|
2011-10-30 14:19:59 +00:00
|
|
|
@COND_MONOLITHIC_0_USE_WEBVIEW_1@__WXLIB_WEBVIEW_p = $(COND_MONOLITHIC_0_USE_WEBVIEW_1___WXLIB_WEBVIEW_p)
|
2010-08-22 22:16:05 +00:00
|
|
|
COND_MONOLITHIC_0___WXLIB_RICHTEXT_p = \
|
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_RICHTEXT_p = $(COND_MONOLITHIC_0___WXLIB_RICHTEXT_p)
|
2009-01-11 00:39:22 +00:00
|
|
|
COND_MONOLITHIC_0_USE_MEDIA_1___WXLIB_MEDIA_p = \
|
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0_USE_MEDIA_1@__WXLIB_MEDIA_p = $(COND_MONOLITHIC_0_USE_MEDIA_1___WXLIB_MEDIA_p)
|
|
|
|
COND_MONOLITHIC_0___WXLIB_XRC_p = \
|
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_XRC_p = $(COND_MONOLITHIC_0___WXLIB_XRC_p)
|
2008-10-15 15:55:25 +00:00
|
|
|
COND_MONOLITHIC_0___WXLIB_HTML_p = \
|
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_HTML_p = $(COND_MONOLITHIC_0___WXLIB_HTML_p)
|
2014-03-18 19:31:21 +00:00
|
|
|
COND_MONOLITHIC_0___WXLIB_XML_p = \
|
|
|
|
-lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_XML_p = $(COND_MONOLITHIC_0___WXLIB_XML_p)
|
|
|
|
COND_MONOLITHIC_0___WXLIB_NET_p = \
|
|
|
|
-lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_NET_p = $(COND_MONOLITHIC_0___WXLIB_NET_p)
|
2009-05-30 13:54:22 +00:00
|
|
|
@COND_WXUNIV_1@__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
|
2009-09-12 13:38:08 +00:00
|
|
|
@COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
|
2009-05-30 13:54:22 +00:00
|
|
|
@COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
|
|
|
|
@COND_USE_RTTI_0@__RTTI_DEFINE_p = -DwxNO_RTTI
|
|
|
|
@COND_USE_THREADS_0@__THREAD_DEFINE_p = -DwxNO_THREADS
|
|
|
|
@COND_SHARED_1@__DLLFLAG_p = -DWXUSINGDLL
|
2014-03-18 19:31:21 +00:00
|
|
|
COND_MONOLITHIC_0___WXLIB_CORE_p = \
|
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_MONOLITHIC_0@__WXLIB_CORE_p = $(COND_MONOLITHIC_0___WXLIB_CORE_p)
|
wx-config2.6
Designed to be resiliant against future cut and paste coders. Any
gnarly parts are black boxed away nicely to avoid accidents and have
integrated debugging support for trivial sanity checking in the event
of modification or trouble. In this way the major operations are all
cleanly separated making any or all of them simply extensible, or
replaceable in the face of future needs. Functions now all have api
descriptions. If you rely on a function to act in some way, please
document it to safeguard yourself against inadvertant interface
changes by others.
Everything now runs top top to bottom, we don't try to output things
as fast as we can read them anymore, instead we read everything in,
sort over it just once without the need for 'just in case' temp's, and
then output whatever we were asked for only when we are sure we have
the correct answer. Almost all key data aims to be constant past the
point of its initialisation so side effect creep and trouble with half
(re)initialised data should be significantly reduced in future. In
almost every case it is easy and clean to simply delay initialisation
until all required input channels have been emptied. If you like,
think of it as mostly being one big constructor, with a little
destructor at the end which outputs what you requested. At core, it
is simply a generated config file -- with some user friendly logic for
extracting its data and finding related files.
Removed references to --gl-libs in --help. It still exists, but if
its deprecated, no need to fill space in a compact help summary. It
will remain documented (as deprecated) in the man page.
Removed references to arcane order rules for arguments. Those
limitations don't exist anymore, though the options are backward
compatible in all other respects from the user pov.
Removed references to --inplace, it doesn't need to be in the summary
help either. It also is still accepted as an option, but there is no
value in passing it, an uninstalled wx-config will automatically
behave correctly. When you need --inplace, it will supply that
behaviour for you (but there is no harm in typing it your self in that
case). If you do type it when you don't need it, bad things will
probably happen just like they always would have.
Along with items above, generally compressed --help text to fit on
even a traditional sized terminal without the need for paging. If we
want more detailed help built in, it should be broken into separate
pages, and this would be a trivial extension.
Command line input is now controlled by a small generic parser. You
define what options you want and what groups you want them in by
initialising them as lists. It runs over all the input and fills
corresponding psuedo-hashes from it for you to use as you please
later.
Added a validator for it to check yes/no options.
Use posix extended regex instead of gnu 'basic' regex extensions,
grep -E is portable, if gmake is not a requirement, we surely can't
push gnu grep on people.
Made --list more user friendly. It will now always list the current
wx-config if it matches the feature spec, though it will warn if that
config is not in the specified --prefix. Alternate configs that match
(if any) are listed separately. An unqualified call to wx-config --list
will always return (at least) the config that was called. We can never
have a 'hanging' wx-config shell with no real implementation to back
it up anymore so we can always return a sensible result for the user.
A wx-config anywhere can list (and hence use) the configs installed in
any (other) prefix.
Delegation. Too big a topic to remark on in depth here, see the code
for a fuller description. With everything being nicely constant and
aligned to the respective library build, then aside from delegation,
wx-config really is _just_ a config file (albeit with a layer of logic
around the constants), and each wx-config carries a set of defaults
which match perfectly the library build that it was generated with.
If you choose a set of features that it can match, it will answer all
your queries for them, if it cannot, it will seek to delegate to the
config that is most like itself, but which can supply all the features
you specified. This should be completely compatible with any set of
options that returned a sensible result previously, and produce a
sensible result in many cases where previously the collating order
of your locale or the nuances of your filesystem operations would
decide which library it thought you wanted.
Sort duplicates out of the list of libraries and trickle shared
dependencies down the list to properly support static builds.
Added the inplace-config tweak for use in the build tree. This works
like any other config, except it presets the default prefix to point
at the build dir instead of the configured prefix that will become the
default if this build is installed. It provides the behaviour of
--inplace when $build_dir/wx-config is called without also specifying
a different --{exec-,}prefix or any feature flags that it is
incompatible with. In that event, it will try to delegate as per the
normal rules.
The inplace wrapper is not installed with the primary config which
cleanly disables it for system installs. It will be invalidated if
the build (or source) dir is moved, but will be revalidated if the
build tree is subseqently updated with ./config.status --recheck &&
config.status (which it probably would need to be to build anyway for
other reasons at present too)
Enabled full support for static builds again, promoted --static to a
full feature option. Fixed --ld to return something for them too.
Added --flavour, similar to the existing --vendor, but for autoconf
builds. These will probably want to be streamlined further.
Broadened the use of release and flavour labels to support better
concurrent installs.
Fix bit rot in make-dist due to new/deleted files.
Whittled down the number of obsolete and duplicated substitution
variables in configure.in, and lowercased some variables we no longer
export for substitution. Use the autoconf macros to generate files
where we want them instead of making them someplace and then moving
them all about. Remove extra files and symlinks added for the two
part wx-config version.
Removed the debian -contrib packages. We'll use multi-lib support
to manage them from now on and indiviual libs can be split out along
functional lines if required. This means the retained contribs will
now get __WXDEBUG__ versions packaged too.
Removed conflicts from almost packages except i18n and wxPython. All
packages now either update or install alongside any existing ones.
Added support for flavoured debs as well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-21 17:16:29 +00:00
|
|
|
COND_MONOLITHIC_0___WXLIB_BASE_p = \
|
2004-09-26 08:46:55 +00:00
|
|
|
-lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
wx-config2.6
Designed to be resiliant against future cut and paste coders. Any
gnarly parts are black boxed away nicely to avoid accidents and have
integrated debugging support for trivial sanity checking in the event
of modification or trouble. In this way the major operations are all
cleanly separated making any or all of them simply extensible, or
replaceable in the face of future needs. Functions now all have api
descriptions. If you rely on a function to act in some way, please
document it to safeguard yourself against inadvertant interface
changes by others.
Everything now runs top top to bottom, we don't try to output things
as fast as we can read them anymore, instead we read everything in,
sort over it just once without the need for 'just in case' temp's, and
then output whatever we were asked for only when we are sure we have
the correct answer. Almost all key data aims to be constant past the
point of its initialisation so side effect creep and trouble with half
(re)initialised data should be significantly reduced in future. In
almost every case it is easy and clean to simply delay initialisation
until all required input channels have been emptied. If you like,
think of it as mostly being one big constructor, with a little
destructor at the end which outputs what you requested. At core, it
is simply a generated config file -- with some user friendly logic for
extracting its data and finding related files.
Removed references to --gl-libs in --help. It still exists, but if
its deprecated, no need to fill space in a compact help summary. It
will remain documented (as deprecated) in the man page.
Removed references to arcane order rules for arguments. Those
limitations don't exist anymore, though the options are backward
compatible in all other respects from the user pov.
Removed references to --inplace, it doesn't need to be in the summary
help either. It also is still accepted as an option, but there is no
value in passing it, an uninstalled wx-config will automatically
behave correctly. When you need --inplace, it will supply that
behaviour for you (but there is no harm in typing it your self in that
case). If you do type it when you don't need it, bad things will
probably happen just like they always would have.
Along with items above, generally compressed --help text to fit on
even a traditional sized terminal without the need for paging. If we
want more detailed help built in, it should be broken into separate
pages, and this would be a trivial extension.
Command line input is now controlled by a small generic parser. You
define what options you want and what groups you want them in by
initialising them as lists. It runs over all the input and fills
corresponding psuedo-hashes from it for you to use as you please
later.
Added a validator for it to check yes/no options.
Use posix extended regex instead of gnu 'basic' regex extensions,
grep -E is portable, if gmake is not a requirement, we surely can't
push gnu grep on people.
Made --list more user friendly. It will now always list the current
wx-config if it matches the feature spec, though it will warn if that
config is not in the specified --prefix. Alternate configs that match
(if any) are listed separately. An unqualified call to wx-config --list
will always return (at least) the config that was called. We can never
have a 'hanging' wx-config shell with no real implementation to back
it up anymore so we can always return a sensible result for the user.
A wx-config anywhere can list (and hence use) the configs installed in
any (other) prefix.
Delegation. Too big a topic to remark on in depth here, see the code
for a fuller description. With everything being nicely constant and
aligned to the respective library build, then aside from delegation,
wx-config really is _just_ a config file (albeit with a layer of logic
around the constants), and each wx-config carries a set of defaults
which match perfectly the library build that it was generated with.
If you choose a set of features that it can match, it will answer all
your queries for them, if it cannot, it will seek to delegate to the
config that is most like itself, but which can supply all the features
you specified. This should be completely compatible with any set of
options that returned a sensible result previously, and produce a
sensible result in many cases where previously the collating order
of your locale or the nuances of your filesystem operations would
decide which library it thought you wanted.
Sort duplicates out of the list of libraries and trickle shared
dependencies down the list to properly support static builds.
Added the inplace-config tweak for use in the build tree. This works
like any other config, except it presets the default prefix to point
at the build dir instead of the configured prefix that will become the
default if this build is installed. It provides the behaviour of
--inplace when $build_dir/wx-config is called without also specifying
a different --{exec-,}prefix or any feature flags that it is
incompatible with. In that event, it will try to delegate as per the
normal rules.
The inplace wrapper is not installed with the primary config which
cleanly disables it for system installs. It will be invalidated if
the build (or source) dir is moved, but will be revalidated if the
build tree is subseqently updated with ./config.status --recheck &&
config.status (which it probably would need to be to build anyway for
other reasons at present too)
Enabled full support for static builds again, promoted --static to a
full feature option. Fixed --ld to return something for them too.
Added --flavour, similar to the existing --vendor, but for autoconf
builds. These will probably want to be streamlined further.
Broadened the use of release and flavour labels to support better
concurrent installs.
Fix bit rot in make-dist due to new/deleted files.
Whittled down the number of obsolete and duplicated substitution
variables in configure.in, and lowercased some variables we no longer
export for substitution. Use the autoconf macros to generate files
where we want them instead of making them someplace and then moving
them all about. Remove extra files and symlinks added for the two
part wx-config version.
Removed the debian -contrib packages. We'll use multi-lib support
to manage them from now on and indiviual libs can be split out along
functional lines if required. This means the retained contribs will
now get __WXDEBUG__ versions packaged too.
Removed conflicts from almost packages except i18n and wxPython. All
packages now either update or install alongside any existing ones.
Added support for flavoured debs as well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-21 17:16:29 +00:00
|
|
|
@COND_MONOLITHIC_0@__WXLIB_BASE_p = $(COND_MONOLITHIC_0___WXLIB_BASE_p)
|
2004-03-03 22:56:16 +00:00
|
|
|
COND_MONOLITHIC_1___WXLIB_MONO_p = \
|
2004-09-26 08:46:55 +00:00
|
|
|
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
2004-03-03 22:56:16 +00:00
|
|
|
@COND_MONOLITHIC_1@__WXLIB_MONO_p = $(COND_MONOLITHIC_1___WXLIB_MONO_p)
|
2014-05-16 09:59:10 +00:00
|
|
|
@COND_MONOLITHIC_1_USE_STC_1@__LIB_SCINTILLA_IF_MONO_p \
|
|
|
|
@COND_MONOLITHIC_1_USE_STC_1@ = \
|
|
|
|
@COND_MONOLITHIC_1_USE_STC_1@ -lwxscintilla$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@__LIB_TIFF_p \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@ = \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@ -lwxtiff$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBJPEG_builtin@__LIB_JPEG_p \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBJPEG_builtin@ = \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBJPEG_builtin@ -lwxjpeg$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
2011-02-05 20:25:09 +00:00
|
|
|
@COND_USE_GUI_1_wxUSE_LIBPNG_builtin@__LIB_PNG_p \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBPNG_builtin@ = \
|
|
|
|
@COND_USE_GUI_1_wxUSE_LIBPNG_builtin@ -lwxpng$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_wxUSE_ZLIB_builtin@__LIB_ZLIB_p = \
|
|
|
|
@COND_wxUSE_ZLIB_builtin@ -lwxzlib$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
|
|
|
COND_wxUSE_REGEX_builtin___LIB_REGEX_p = \
|
wx-config2.6
Designed to be resiliant against future cut and paste coders. Any
gnarly parts are black boxed away nicely to avoid accidents and have
integrated debugging support for trivial sanity checking in the event
of modification or trouble. In this way the major operations are all
cleanly separated making any or all of them simply extensible, or
replaceable in the face of future needs. Functions now all have api
descriptions. If you rely on a function to act in some way, please
document it to safeguard yourself against inadvertant interface
changes by others.
Everything now runs top top to bottom, we don't try to output things
as fast as we can read them anymore, instead we read everything in,
sort over it just once without the need for 'just in case' temp's, and
then output whatever we were asked for only when we are sure we have
the correct answer. Almost all key data aims to be constant past the
point of its initialisation so side effect creep and trouble with half
(re)initialised data should be significantly reduced in future. In
almost every case it is easy and clean to simply delay initialisation
until all required input channels have been emptied. If you like,
think of it as mostly being one big constructor, with a little
destructor at the end which outputs what you requested. At core, it
is simply a generated config file -- with some user friendly logic for
extracting its data and finding related files.
Removed references to --gl-libs in --help. It still exists, but if
its deprecated, no need to fill space in a compact help summary. It
will remain documented (as deprecated) in the man page.
Removed references to arcane order rules for arguments. Those
limitations don't exist anymore, though the options are backward
compatible in all other respects from the user pov.
Removed references to --inplace, it doesn't need to be in the summary
help either. It also is still accepted as an option, but there is no
value in passing it, an uninstalled wx-config will automatically
behave correctly. When you need --inplace, it will supply that
behaviour for you (but there is no harm in typing it your self in that
case). If you do type it when you don't need it, bad things will
probably happen just like they always would have.
Along with items above, generally compressed --help text to fit on
even a traditional sized terminal without the need for paging. If we
want more detailed help built in, it should be broken into separate
pages, and this would be a trivial extension.
Command line input is now controlled by a small generic parser. You
define what options you want and what groups you want them in by
initialising them as lists. It runs over all the input and fills
corresponding psuedo-hashes from it for you to use as you please
later.
Added a validator for it to check yes/no options.
Use posix extended regex instead of gnu 'basic' regex extensions,
grep -E is portable, if gmake is not a requirement, we surely can't
push gnu grep on people.
Made --list more user friendly. It will now always list the current
wx-config if it matches the feature spec, though it will warn if that
config is not in the specified --prefix. Alternate configs that match
(if any) are listed separately. An unqualified call to wx-config --list
will always return (at least) the config that was called. We can never
have a 'hanging' wx-config shell with no real implementation to back
it up anymore so we can always return a sensible result for the user.
A wx-config anywhere can list (and hence use) the configs installed in
any (other) prefix.
Delegation. Too big a topic to remark on in depth here, see the code
for a fuller description. With everything being nicely constant and
aligned to the respective library build, then aside from delegation,
wx-config really is _just_ a config file (albeit with a layer of logic
around the constants), and each wx-config carries a set of defaults
which match perfectly the library build that it was generated with.
If you choose a set of features that it can match, it will answer all
your queries for them, if it cannot, it will seek to delegate to the
config that is most like itself, but which can supply all the features
you specified. This should be completely compatible with any set of
options that returned a sensible result previously, and produce a
sensible result in many cases where previously the collating order
of your locale or the nuances of your filesystem operations would
decide which library it thought you wanted.
Sort duplicates out of the list of libraries and trickle shared
dependencies down the list to properly support static builds.
Added the inplace-config tweak for use in the build tree. This works
like any other config, except it presets the default prefix to point
at the build dir instead of the configured prefix that will become the
default if this build is installed. It provides the behaviour of
--inplace when $build_dir/wx-config is called without also specifying
a different --{exec-,}prefix or any feature flags that it is
incompatible with. In that event, it will try to delegate as per the
normal rules.
The inplace wrapper is not installed with the primary config which
cleanly disables it for system installs. It will be invalidated if
the build (or source) dir is moved, but will be revalidated if the
build tree is subseqently updated with ./config.status --recheck &&
config.status (which it probably would need to be to build anyway for
other reasons at present too)
Enabled full support for static builds again, promoted --static to a
full feature option. Fixed --ld to return something for them too.
Added --flavour, similar to the existing --vendor, but for autoconf
builds. These will probably want to be streamlined further.
Broadened the use of release and flavour labels to support better
concurrent installs.
Fix bit rot in make-dist due to new/deleted files.
Whittled down the number of obsolete and duplicated substitution
variables in configure.in, and lowercased some variables we no longer
export for substitution. Use the autoconf macros to generate files
where we want them instead of making them someplace and then moving
them all about. Remove extra files and symlinks added for the two
part wx-config version.
Removed the debian -contrib packages. We'll use multi-lib support
to manage them from now on and indiviual libs can be split out along
functional lines if required. This means the retained contribs will
now get __WXDEBUG__ versions packaged too.
Removed conflicts from almost packages except i18n and wxPython. All
packages now either update or install alongside any existing ones.
Added support for flavoured debs as well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-21 17:16:29 +00:00
|
|
|
-lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_wxUSE_REGEX_builtin@__LIB_REGEX_p = $(COND_wxUSE_REGEX_builtin___LIB_REGEX_p)
|
|
|
|
@COND_wxUSE_EXPAT_builtin@__LIB_EXPAT_p = \
|
|
|
|
@COND_wxUSE_EXPAT_builtin@ -lwxexpat$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
### Targets: ###
|
|
|
|
|
2016-06-24 21:34:58 +00:00
|
|
|
all: test$(EXEEXT) $(__test_drawing___depname) $(__test_drawingplugin___depname) $(__test_gui___depname) $(__test_gui_bundle___depname) data data-images fr ja
|
2004-03-03 22:56:16 +00:00
|
|
|
|
2008-10-08 15:44:49 +00:00
|
|
|
install:
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
|
|
|
|
install-strip: install
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf ./.deps ./.pch
|
|
|
|
rm -f ./*.o
|
|
|
|
rm -f test$(EXEEXT)
|
2014-03-18 19:31:21 +00:00
|
|
|
rm -f test_drawing$(EXEEXT)
|
|
|
|
rm -f $(DLLPREFIX_MODULE)test_drawingplugin.$(SO_SUFFIX_MODULE)
|
2004-12-12 12:35:45 +00:00
|
|
|
rm -f test_gui$(EXEEXT)
|
|
|
|
rm -rf test_gui.app
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2005-02-08 16:10:29 +00:00
|
|
|
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
|
2004-03-03 22:56:16 +00:00
|
|
|
|
|
|
|
test$(EXEEXT): $(TEST_OBJECTS)
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
$(CXX) -o $@ $(TEST_OBJECTS) -L$(LIBDIRNAME) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_NET_p) $(__WXLIB_XML_p) $(EXTRALIBS_XML) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_PNG_IF_MONO_p) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
|
2004-03-03 22:56:16 +00:00
|
|
|
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_USE_PCH_1@./.pch/testprec_test/testprec.h.gch:
|
|
|
|
@COND_USE_PCH_1@ $(BK_MAKE_PCH) ./.pch/testprec_test/testprec.h.gch testprec.h $(CXX) $(TEST_CXXFLAGS)
|
2004-11-22 05:00:19 +00:00
|
|
|
|
2014-04-01 22:49:04 +00:00
|
|
|
@COND_USE_GUI_1@test_drawing$(EXEEXT): $(TEST_DRAWING_OBJECTS)
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
@COND_USE_GUI_1@ $(CXX) -o $@ $(TEST_DRAWING_OBJECTS) -L$(LIBDIRNAME) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
|
2014-03-18 19:31:21 +00:00
|
|
|
|
2014-04-01 22:49:04 +00:00
|
|
|
@COND_USE_PCH_1@./.pch/testprec_test_drawing/testprec.h.gch:
|
2014-03-18 19:31:21 +00:00
|
|
|
@COND_USE_PCH_1@ $(BK_MAKE_PCH) ./.pch/testprec_test_drawing/testprec.h.gch testprec.h $(CXX) $(TEST_DRAWING_CXXFLAGS)
|
|
|
|
|
2014-05-16 10:53:55 +00:00
|
|
|
@COND_SHARED_1_USE_GUI_1@$(DLLPREFIX_MODULE)test_drawingplugin.$(SO_SUFFIX_MODULE): $(TEST_DRAWINGPLUGIN_OBJECTS)
|
|
|
|
@COND_SHARED_1_USE_GUI_1@ $(SHARED_LD_MODULE_CXX) $@ $(TEST_DRAWINGPLUGIN_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
|
2014-03-18 19:31:21 +00:00
|
|
|
|
2004-12-12 12:35:45 +00:00
|
|
|
@COND_USE_GUI_1@test_gui$(EXEEXT): $(TEST_GUI_OBJECTS) $(__test_gui___win32rc)
|
2018-08-27 14:34:34 +00:00
|
|
|
@COND_USE_GUI_1@ $(CXX) -o $@ $(TEST_GUI_OBJECTS) -L$(LIBDIRNAME) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_WEBVIEW_p) $(__WXLIB_RICHTEXT_p) $(__WXLIB_MEDIA_p) $(EXTRALIBS_MEDIA) $(__WXLIB_XRC_p) $(__WXLIB_XML_p) $(EXTRALIBS_XML) $(__WXLIB_HTML_p) $(EXTRALIBS_HTML) $(__WXLIB_CORE_p) $(__WXLIB_NET_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2008-06-12 17:54:47 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@test_gui.app/Contents/PkgInfo: $(__test_gui___depname) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ mkdir -p test_gui.app/Contents
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ mkdir -p test_gui.app/Contents/MacOS
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ mkdir -p test_gui.app/Contents/Resources
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ sed -e "s/IDENTIFIER/`echo $(srcdir) | sed -e 's,\.\./,,g' | sed -e 's,/,.,g'`/" \
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ -e "s/EXECUTABLE/test_gui/" \
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ -e "s/VERSION/$(WX_VERSION)/" \
|
2008-06-12 17:54:47 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ $(top_srcdir)/src/osx/carbon/Info.plist.in >test_gui.app/Contents/Info.plist
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
2012-02-28 22:48:39 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ /bin/echo "APPL????" >test_gui.app/Contents/PkgInfo
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
2009-04-26 02:04:16 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ ln -f test_gui$(EXEEXT) test_gui.app/Contents/MacOS/test_gui
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@
|
2008-06-12 17:54:47 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ cp -f $(top_srcdir)/src/osx/carbon/wxmac.icns test_gui.app/Contents/Resources/wxmac.icns
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2008-06-02 14:48:50 +00:00
|
|
|
@COND_PLATFORM_MACOSX_1_USE_GUI_1@test_gui_bundle: $(____test_gui_BUNDLE_TGT_REF_DEP)
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2008-10-08 15:44:49 +00:00
|
|
|
@COND_USE_PCH_1@./.pch/testprec_test_gui/testprec.h.gch:
|
|
|
|
@COND_USE_PCH_1@ $(BK_MAKE_PCH) ./.pch/testprec_test_gui/testprec.h.gch testprec.h $(CXX) $(TEST_GUI_CXXFLAGS)
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2004-04-30 20:26:14 +00:00
|
|
|
data:
|
|
|
|
@mkdir -p .
|
2009-06-01 11:46:36 +00:00
|
|
|
@for f in horse.ani horse.bmp horse.cur horse.gif horse.ico horse.jpg horse.pcx horse.png horse.pnm horse.tga horse.tif horse.xpm; do \
|
2005-07-28 12:48:14 +00:00
|
|
|
if test ! -f ./$$f -a ! -d ./$$f ; \
|
2005-02-08 16:10:29 +00:00
|
|
|
then x=yep ; \
|
|
|
|
else x=`find $(srcdir)/$$f -newer ./$$f -print` ; \
|
2004-04-30 20:26:14 +00:00
|
|
|
fi; \
|
2005-02-08 16:10:29 +00:00
|
|
|
case "$$x" in ?*) \
|
|
|
|
cp -pRf $(srcdir)/$$f . ;; \
|
|
|
|
esac; \
|
2004-04-30 20:26:14 +00:00
|
|
|
done
|
|
|
|
|
2011-08-19 16:10:07 +00:00
|
|
|
data-images:
|
|
|
|
@mkdir -p image
|
2017-04-14 22:11:39 +00:00
|
|
|
@for f in horse_grey.bmp horse_grey_flipped.bmp horse_rle4.bmp horse_rle4_flipped.bmp horse_rle8.bmp horse_rle8_flipped.bmp horse_bicubic_50x50.png horse_bicubic_100x100.png horse_bicubic_150x150.png horse_bicubic_300x300.png horse_bilinear_50x50.png horse_bilinear_100x100.png horse_bilinear_150x150.png horse_bilinear_300x300.png horse_box_average_50x50.png horse_box_average_100x100.png horse_box_average_150x150.png horse_box_average_300x300.png cross_bicubic_256x256.png cross_bilinear_256x256.png cross_box_average_256x256.png cross_nearest_neighb_256x256.png; do \
|
2011-08-19 16:10:07 +00:00
|
|
|
if test ! -f image/$$f -a ! -d image/$$f ; \
|
|
|
|
then x=yep ; \
|
|
|
|
else x=`find $(srcdir)/image/$$f -newer image/$$f -print` ; \
|
|
|
|
fi; \
|
|
|
|
case "$$x" in ?*) \
|
|
|
|
cp -pRf $(srcdir)/image/$$f image ;; \
|
|
|
|
esac; \
|
|
|
|
done
|
|
|
|
|
2007-03-26 21:12:13 +00:00
|
|
|
fr:
|
|
|
|
@mkdir -p ./intl/fr
|
|
|
|
@for f in internat.po internat.mo; do \
|
|
|
|
if test ! -f ./intl/fr/$$f -a ! -d ./intl/fr/$$f ; \
|
|
|
|
then x=yep ; \
|
|
|
|
else x=`find $(srcdir)/intl/fr/$$f -newer ./intl/fr/$$f -print` ; \
|
|
|
|
fi; \
|
|
|
|
case "$$x" in ?*) \
|
|
|
|
cp -pRf $(srcdir)/intl/fr/$$f ./intl/fr ;; \
|
|
|
|
esac; \
|
|
|
|
done
|
|
|
|
|
2016-09-07 22:42:46 +00:00
|
|
|
ja:
|
2016-06-24 21:34:58 +00:00
|
|
|
@mkdir -p ./intl/ja
|
|
|
|
@for f in internat.po internat.mo; do \
|
|
|
|
if test ! -f ./intl/ja/$$f -a ! -d ./intl/ja/$$f ; \
|
|
|
|
then x=yep ; \
|
|
|
|
else x=`find $(srcdir)/intl/ja/$$f -newer ./intl/ja/$$f -print` ; \
|
|
|
|
fi; \
|
|
|
|
case "$$x" in ?*) \
|
|
|
|
cp -pRf $(srcdir)/intl/ja/$$f ./intl/ja ;; \
|
|
|
|
esac; \
|
|
|
|
done
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_test.o: $(srcdir)/test.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/test.cpp
|
2004-11-22 05:00:19 +00:00
|
|
|
|
2009-09-19 08:51:11 +00:00
|
|
|
test_anytest.o: $(srcdir)/any/anytest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/any/anytest.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_archivetest.o: $(srcdir)/archive/archivetest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/archive/archivetest.cpp
|
2004-03-03 22:56:16 +00:00
|
|
|
|
2005-02-10 14:06:08 +00:00
|
|
|
test_ziptest.o: $(srcdir)/archive/ziptest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/archive/ziptest.cpp
|
|
|
|
|
2006-10-27 10:11:46 +00:00
|
|
|
test_tartest.o: $(srcdir)/archive/tartest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/archive/tartest.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_arrays.o: $(srcdir)/arrays/arrays.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/arrays/arrays.cpp
|
2004-11-11 04:51:25 +00:00
|
|
|
|
2007-07-10 02:00:51 +00:00
|
|
|
test_base64.o: $(srcdir)/base64/base64.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/base64/base64.cpp
|
|
|
|
|
2008-04-12 17:03:09 +00:00
|
|
|
test_cmdlinetest.o: $(srcdir)/cmdline/cmdlinetest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/cmdline/cmdlinetest.cpp
|
|
|
|
|
2007-07-21 23:51:19 +00:00
|
|
|
test_fileconf.o: $(srcdir)/config/fileconf.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/config/fileconf.cpp
|
|
|
|
|
2010-06-02 14:12:07 +00:00
|
|
|
test_regconf.o: $(srcdir)/config/regconf.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/config/regconf.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_datetimetest.o: $(srcdir)/datetime/datetimetest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/datetime/datetimetest.cpp
|
2004-03-05 23:14:23 +00:00
|
|
|
|
2009-02-01 23:20:27 +00:00
|
|
|
test_evthandler.o: $(srcdir)/events/evthandler.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/evthandler.cpp
|
|
|
|
|
2013-07-03 00:26:13 +00:00
|
|
|
test_evtlooptest.o: $(srcdir)/events/evtlooptest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/evtlooptest.cpp
|
|
|
|
|
2009-10-22 11:35:43 +00:00
|
|
|
test_evtsource.o: $(srcdir)/events/evtsource.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/evtsource.cpp
|
|
|
|
|
2010-05-16 15:44:17 +00:00
|
|
|
test_stopwatch.o: $(srcdir)/events/stopwatch.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/stopwatch.cpp
|
|
|
|
|
2008-10-27 22:04:42 +00:00
|
|
|
test_timertest.o: $(srcdir)/events/timertest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/events/timertest.cpp
|
|
|
|
|
2009-03-23 16:23:44 +00:00
|
|
|
test_exec.o: $(srcdir)/exec/exec.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/exec/exec.cpp
|
|
|
|
|
2010-06-19 12:32:57 +00:00
|
|
|
test_dir.o: $(srcdir)/file/dir.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/file/dir.cpp
|
|
|
|
|
2010-06-13 14:30:55 +00:00
|
|
|
test_filefn.o: $(srcdir)/file/filefn.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/file/filefn.cpp
|
|
|
|
|
2009-09-12 22:40:42 +00:00
|
|
|
test_filetest.o: $(srcdir)/file/filetest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/file/filetest.cpp
|
|
|
|
|
2005-02-12 21:53:51 +00:00
|
|
|
test_filekind.o: $(srcdir)/filekind/filekind.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/filekind/filekind.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_filenametest.o: $(srcdir)/filename/filenametest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/filename/filenametest.cpp
|
2004-10-07 22:35:53 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_filesystest.o: $(srcdir)/filesys/filesystest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/filesys/filesystest.cpp
|
2004-08-02 07:34:01 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_fontmaptest.o: $(srcdir)/fontmap/fontmaptest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/fontmap/fontmaptest.cpp
|
2004-03-28 20:44:26 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_formatconvertertest.o: $(srcdir)/formatconverter/formatconvertertest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/formatconverter/formatconvertertest.cpp
|
2004-10-27 22:47:26 +00:00
|
|
|
|
2009-10-22 11:35:43 +00:00
|
|
|
test_fswatchertest.o: $(srcdir)/fswatcher/fswatchertest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/fswatcher/fswatchertest.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_hashes.o: $(srcdir)/hashes/hashes.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/hashes/hashes.cpp
|
2004-04-01 21:10:33 +00:00
|
|
|
|
2010-06-21 21:03:47 +00:00
|
|
|
test_output.o: $(srcdir)/interactive/output.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/interactive/output.cpp
|
|
|
|
|
|
|
|
test_input.o: $(srcdir)/interactive/input.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/interactive/input.cpp
|
|
|
|
|
2007-03-26 21:12:13 +00:00
|
|
|
test_intltest.o: $(srcdir)/intl/intltest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/intl/intltest.cpp
|
|
|
|
|
2004-12-08 22:39:22 +00:00
|
|
|
test_lists.o: $(srcdir)/lists/lists.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/lists/lists.cpp
|
2004-12-08 22:39:22 +00:00
|
|
|
|
2009-07-07 12:19:34 +00:00
|
|
|
test_logtest.o: $(srcdir)/log/logtest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/log/logtest.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_longlongtest.o: $(srcdir)/longlong/longlongtest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/longlong/longlongtest.cpp
|
2004-05-22 17:52:44 +00:00
|
|
|
|
2006-04-05 15:07:06 +00:00
|
|
|
test_convautotest.o: $(srcdir)/mbconv/convautotest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/mbconv/convautotest.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_mbconvtest.o: $(srcdir)/mbconv/mbconvtest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/mbconv/mbconvtest.cpp
|
2004-04-06 12:15:27 +00:00
|
|
|
|
2010-06-13 14:30:55 +00:00
|
|
|
test_dynamiclib.o: $(srcdir)/misc/dynamiclib.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/dynamiclib.cpp
|
|
|
|
|
|
|
|
test_environ.o: $(srcdir)/misc/environ.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/environ.cpp
|
|
|
|
|
2010-06-14 15:12:37 +00:00
|
|
|
test_metatest.o: $(srcdir)/misc/metatest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/metatest.cpp
|
|
|
|
|
2008-08-02 22:49:01 +00:00
|
|
|
test_misctests.o: $(srcdir)/misc/misctests.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/misctests.cpp
|
|
|
|
|
2010-06-06 14:21:27 +00:00
|
|
|
test_module.o: $(srcdir)/misc/module.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/module.cpp
|
|
|
|
|
|
|
|
test_pathlist.o: $(srcdir)/misc/pathlist.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/pathlist.cpp
|
|
|
|
|
2009-11-19 19:27:24 +00:00
|
|
|
test_typeinfotest.o: $(srcdir)/misc/typeinfotest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/misc/typeinfotest.cpp
|
|
|
|
|
2008-07-14 02:19:34 +00:00
|
|
|
test_ipc.o: $(srcdir)/net/ipc.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/net/ipc.cpp
|
|
|
|
|
2008-10-12 20:45:29 +00:00
|
|
|
test_socket.o: $(srcdir)/net/socket.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/net/socket.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_regextest.o: $(srcdir)/regex/regextest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/regex/regextest.cpp
|
2004-10-27 22:47:26 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_wxregextest.o: $(srcdir)/regex/wxregextest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/regex/wxregextest.cpp
|
2004-10-27 22:47:26 +00:00
|
|
|
|
2005-07-20 13:29:15 +00:00
|
|
|
test_scopeguardtest.o: $(srcdir)/scopeguard/scopeguardtest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/scopeguard/scopeguardtest.cpp
|
|
|
|
|
2008-06-15 18:02:23 +00:00
|
|
|
test_iostream.o: $(srcdir)/strings/iostream.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/iostream.cpp
|
|
|
|
|
2011-01-19 10:47:40 +00:00
|
|
|
test_numformatter.o: $(srcdir)/strings/numformatter.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/numformatter.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_strings.o: $(srcdir)/strings/strings.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/strings.cpp
|
2004-10-27 22:47:26 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_stdstrings.o: $(srcdir)/strings/stdstrings.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/stdstrings.cpp
|
2004-04-20 18:55:09 +00:00
|
|
|
|
2005-12-22 00:11:26 +00:00
|
|
|
test_tokenizer.o: $(srcdir)/strings/tokenizer.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/tokenizer.cpp
|
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
test_unichar.o: $(srcdir)/strings/unichar.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/unichar.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_unicode.o: $(srcdir)/strings/unicode.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/unicode.cpp
|
2004-05-21 07:59:14 +00:00
|
|
|
|
2007-03-17 10:26:10 +00:00
|
|
|
test_vararg.o: $(srcdir)/strings/vararg.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/vararg.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_crt.o: $(srcdir)/strings/crt.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/crt.cpp
|
2004-04-30 20:26:14 +00:00
|
|
|
|
2006-06-29 07:16:39 +00:00
|
|
|
test_vsnprintf.o: $(srcdir)/strings/vsnprintf.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/vsnprintf.cpp
|
|
|
|
|
2017-02-23 19:01:48 +00:00
|
|
|
test_hexconv.o: $(srcdir)/strings/hexconv.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/strings/hexconv.cpp
|
|
|
|
|
2004-12-08 22:39:22 +00:00
|
|
|
test_datastreamtest.o: $(srcdir)/streams/datastreamtest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/datastreamtest.cpp
|
2004-12-08 22:39:22 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_ffilestream.o: $(srcdir)/streams/ffilestream.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/ffilestream.cpp
|
2004-04-18 19:26:20 +00:00
|
|
|
|
2006-10-23 21:58:35 +00:00
|
|
|
test_fileback.o: $(srcdir)/streams/fileback.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/fileback.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_filestream.o: $(srcdir)/streams/filestream.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/filestream.cpp
|
|
|
|
|
2008-06-15 18:02:23 +00:00
|
|
|
test_iostreams.o: $(srcdir)/streams/iostreams.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/iostreams.cpp
|
|
|
|
|
2005-02-08 16:10:29 +00:00
|
|
|
test_largefile.o: $(srcdir)/streams/largefile.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/largefile.cpp
|
2004-04-18 19:26:20 +00:00
|
|
|
|
2018-03-30 19:55:36 +00:00
|
|
|
test_lzmastream.o: $(srcdir)/streams/lzmastream.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/lzmastream.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_memstream.o: $(srcdir)/streams/memstream.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/memstream.cpp
|
2004-04-18 19:26:20 +00:00
|
|
|
|
2008-07-08 00:19:54 +00:00
|
|
|
test_socketstream.o: $(srcdir)/streams/socketstream.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/socketstream.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_sstream.o: $(srcdir)/streams/sstream.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/sstream.cpp
|
2004-04-18 19:26:20 +00:00
|
|
|
|
2009-05-02 18:29:33 +00:00
|
|
|
test_stdstream.o: $(srcdir)/streams/stdstream.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/stdstream.cpp
|
|
|
|
|
2005-03-13 16:20:51 +00:00
|
|
|
test_tempfile.o: $(srcdir)/streams/tempfile.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/tempfile.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_textstreamtest.o: $(srcdir)/streams/textstreamtest.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/textstreamtest.cpp
|
wx-config2.6
Designed to be resiliant against future cut and paste coders. Any
gnarly parts are black boxed away nicely to avoid accidents and have
integrated debugging support for trivial sanity checking in the event
of modification or trouble. In this way the major operations are all
cleanly separated making any or all of them simply extensible, or
replaceable in the face of future needs. Functions now all have api
descriptions. If you rely on a function to act in some way, please
document it to safeguard yourself against inadvertant interface
changes by others.
Everything now runs top top to bottom, we don't try to output things
as fast as we can read them anymore, instead we read everything in,
sort over it just once without the need for 'just in case' temp's, and
then output whatever we were asked for only when we are sure we have
the correct answer. Almost all key data aims to be constant past the
point of its initialisation so side effect creep and trouble with half
(re)initialised data should be significantly reduced in future. In
almost every case it is easy and clean to simply delay initialisation
until all required input channels have been emptied. If you like,
think of it as mostly being one big constructor, with a little
destructor at the end which outputs what you requested. At core, it
is simply a generated config file -- with some user friendly logic for
extracting its data and finding related files.
Removed references to --gl-libs in --help. It still exists, but if
its deprecated, no need to fill space in a compact help summary. It
will remain documented (as deprecated) in the man page.
Removed references to arcane order rules for arguments. Those
limitations don't exist anymore, though the options are backward
compatible in all other respects from the user pov.
Removed references to --inplace, it doesn't need to be in the summary
help either. It also is still accepted as an option, but there is no
value in passing it, an uninstalled wx-config will automatically
behave correctly. When you need --inplace, it will supply that
behaviour for you (but there is no harm in typing it your self in that
case). If you do type it when you don't need it, bad things will
probably happen just like they always would have.
Along with items above, generally compressed --help text to fit on
even a traditional sized terminal without the need for paging. If we
want more detailed help built in, it should be broken into separate
pages, and this would be a trivial extension.
Command line input is now controlled by a small generic parser. You
define what options you want and what groups you want them in by
initialising them as lists. It runs over all the input and fills
corresponding psuedo-hashes from it for you to use as you please
later.
Added a validator for it to check yes/no options.
Use posix extended regex instead of gnu 'basic' regex extensions,
grep -E is portable, if gmake is not a requirement, we surely can't
push gnu grep on people.
Made --list more user friendly. It will now always list the current
wx-config if it matches the feature spec, though it will warn if that
config is not in the specified --prefix. Alternate configs that match
(if any) are listed separately. An unqualified call to wx-config --list
will always return (at least) the config that was called. We can never
have a 'hanging' wx-config shell with no real implementation to back
it up anymore so we can always return a sensible result for the user.
A wx-config anywhere can list (and hence use) the configs installed in
any (other) prefix.
Delegation. Too big a topic to remark on in depth here, see the code
for a fuller description. With everything being nicely constant and
aligned to the respective library build, then aside from delegation,
wx-config really is _just_ a config file (albeit with a layer of logic
around the constants), and each wx-config carries a set of defaults
which match perfectly the library build that it was generated with.
If you choose a set of features that it can match, it will answer all
your queries for them, if it cannot, it will seek to delegate to the
config that is most like itself, but which can supply all the features
you specified. This should be completely compatible with any set of
options that returned a sensible result previously, and produce a
sensible result in many cases where previously the collating order
of your locale or the nuances of your filesystem operations would
decide which library it thought you wanted.
Sort duplicates out of the list of libraries and trickle shared
dependencies down the list to properly support static builds.
Added the inplace-config tweak for use in the build tree. This works
like any other config, except it presets the default prefix to point
at the build dir instead of the configured prefix that will become the
default if this build is installed. It provides the behaviour of
--inplace when $build_dir/wx-config is called without also specifying
a different --{exec-,}prefix or any feature flags that it is
incompatible with. In that event, it will try to delegate as per the
normal rules.
The inplace wrapper is not installed with the primary config which
cleanly disables it for system installs. It will be invalidated if
the build (or source) dir is moved, but will be revalidated if the
build tree is subseqently updated with ./config.status --recheck &&
config.status (which it probably would need to be to build anyway for
other reasons at present too)
Enabled full support for static builds again, promoted --static to a
full feature option. Fixed --ld to return something for them too.
Added --flavour, similar to the existing --vendor, but for autoconf
builds. These will probably want to be streamlined further.
Broadened the use of release and flavour labels to support better
concurrent installs.
Fix bit rot in make-dist due to new/deleted files.
Whittled down the number of obsolete and duplicated substitution
variables in configure.in, and lowercased some variables we no longer
export for substitution. Use the autoconf macros to generate files
where we want them instead of making them someplace and then moving
them all about. Remove extra files and symlinks added for the two
part wx-config version.
Removed the debian -contrib packages. We'll use multi-lib support
to manage them from now on and indiviual libs can be split out along
functional lines if required. This means the retained contribs will
now get __WXDEBUG__ versions packaged too.
Removed conflicts from almost packages except i18n and wxPython. All
packages now either update or install alongside any existing ones.
Added support for flavoured debs as well.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-09-21 17:16:29 +00:00
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_zlibstream.o: $(srcdir)/streams/zlibstream.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/streams/zlibstream.cpp
|
2004-04-18 19:26:20 +00:00
|
|
|
|
2006-04-01 14:04:59 +00:00
|
|
|
test_textfiletest.o: $(srcdir)/textfile/textfiletest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/textfile/textfiletest.cpp
|
|
|
|
|
2007-07-04 20:56:52 +00:00
|
|
|
test_atomic.o: $(srcdir)/thread/atomic.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/thread/atomic.cpp
|
|
|
|
|
2010-05-10 21:48:24 +00:00
|
|
|
test_misc.o: $(srcdir)/thread/misc.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/thread/misc.cpp
|
|
|
|
|
2007-11-01 01:35:20 +00:00
|
|
|
test_queue.o: $(srcdir)/thread/queue.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/thread/queue.cpp
|
|
|
|
|
2008-08-29 23:28:42 +00:00
|
|
|
test_tls.o: $(srcdir)/thread/tls.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/thread/tls.cpp
|
|
|
|
|
2010-05-29 07:56:08 +00:00
|
|
|
test_ftp.o: $(srcdir)/uris/ftp.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/uris/ftp.cpp
|
|
|
|
|
2004-11-22 05:00:19 +00:00
|
|
|
test_uris.o: $(srcdir)/uris/uris.cpp $(TEST_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/uris/uris.cpp
|
2004-06-24 08:05:50 +00:00
|
|
|
|
2009-06-01 11:46:36 +00:00
|
|
|
test_url.o: $(srcdir)/uris/url.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/uris/url.cpp
|
|
|
|
|
2007-07-07 10:09:42 +00:00
|
|
|
test_vectors.o: $(srcdir)/vectors/vectors.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/vectors/vectors.cpp
|
|
|
|
|
2008-01-13 02:48:17 +00:00
|
|
|
test_evtconnection.o: $(srcdir)/weakref/evtconnection.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/weakref/evtconnection.cpp
|
|
|
|
|
|
|
|
test_weakref.o: $(srcdir)/weakref/weakref.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/weakref/weakref.cpp
|
|
|
|
|
2008-02-10 17:03:23 +00:00
|
|
|
test_xlocale.o: $(srcdir)/xlocale/xlocale.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/xlocale/xlocale.cpp
|
|
|
|
|
2008-03-29 22:55:35 +00:00
|
|
|
test_xmltest.o: $(srcdir)/xml/xmltest.cpp $(TEST_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_CXXFLAGS) $(srcdir)/xml/xmltest.cpp
|
|
|
|
|
2014-03-18 19:31:21 +00:00
|
|
|
test_drawing_test.o: $(srcdir)/test.cpp $(TEST_DRAWING_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWING_CXXFLAGS) $(srcdir)/test.cpp
|
|
|
|
|
|
|
|
test_drawing_drawing.o: $(srcdir)/drawing/drawing.cpp $(TEST_DRAWING_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWING_CXXFLAGS) $(srcdir)/drawing/drawing.cpp
|
|
|
|
|
|
|
|
test_drawing_plugindriver.o: $(srcdir)/drawing/plugindriver.cpp $(TEST_DRAWING_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWING_CXXFLAGS) $(srcdir)/drawing/plugindriver.cpp
|
|
|
|
|
|
|
|
test_drawing_basictest.o: $(srcdir)/drawing/basictest.cpp $(TEST_DRAWING_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWING_CXXFLAGS) $(srcdir)/drawing/basictest.cpp
|
|
|
|
|
2014-05-17 12:29:21 +00:00
|
|
|
test_drawing_fonttest.o: $(srcdir)/drawing/fonttest.cpp $(TEST_DRAWING_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWING_CXXFLAGS) $(srcdir)/drawing/fonttest.cpp
|
|
|
|
|
2014-03-18 19:31:21 +00:00
|
|
|
test_drawingplugin_pluginsample.o: $(srcdir)/drawing/pluginsample.cpp
|
|
|
|
$(CXXC) -c -o $@ $(TEST_DRAWINGPLUGIN_CXXFLAGS) $(srcdir)/drawing/pluginsample.cpp
|
|
|
|
|
2005-07-28 12:48:14 +00:00
|
|
|
test_gui_sample_rc.o: $(srcdir)/../samples/sample.rc $(TEST_GUI_ODEP)
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 18:15:24 +00:00
|
|
|
$(WINDRES) -i$< -o$@ --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_6) $(__DEBUG_DEFINE_p_6) $(__EXCEPTIONS_DEFINE_p_6) $(__RTTI_DEFINE_p_6) $(__THREAD_DEFINE_p_6) --include-dir $(srcdir) $(__DLLFLAG_p_6) --include-dir $(srcdir)/../samples $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --include-dir $(top_srcdir)/3rdparty/catch/include
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_asserthelper.o: $(srcdir)/asserthelper.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/asserthelper.cpp
|
|
|
|
|
2004-12-12 12:35:45 +00:00
|
|
|
test_gui_test.o: $(srcdir)/test.cpp $(TEST_GUI_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/test.cpp
|
2004-12-12 12:35:45 +00:00
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_testableframe.o: $(srcdir)/testableframe.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/testableframe.cpp
|
|
|
|
|
2004-12-12 19:25:46 +00:00
|
|
|
test_gui_rect.o: $(srcdir)/geometry/rect.cpp $(TEST_GUI_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/geometry/rect.cpp
|
2004-12-12 19:25:46 +00:00
|
|
|
|
2004-12-28 18:18:04 +00:00
|
|
|
test_gui_size.o: $(srcdir)/geometry/size.cpp $(TEST_GUI_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/geometry/size.cpp
|
2004-12-28 18:18:04 +00:00
|
|
|
|
|
|
|
test_gui_point.o: $(srcdir)/geometry/point.cpp $(TEST_GUI_ODEP)
|
2005-02-08 16:10:29 +00:00
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/geometry/point.cpp
|
2009-04-16 14:49:28 +00:00
|
|
|
|
2011-10-18 21:56:48 +00:00
|
|
|
test_gui_region.o: $(srcdir)/geometry/region.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/geometry/region.cpp
|
|
|
|
|
2010-03-28 23:20:49 +00:00
|
|
|
test_gui_bitmap.o: $(srcdir)/graphics/bitmap.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/bitmap.cpp
|
|
|
|
|
2009-09-19 16:29:50 +00:00
|
|
|
test_gui_colour.o: $(srcdir)/graphics/colour.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/colour.cpp
|
|
|
|
|
2010-03-10 13:57:47 +00:00
|
|
|
test_gui_ellipsization.o: $(srcdir)/graphics/ellipsization.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/ellipsization.cpp
|
|
|
|
|
2009-04-16 14:49:28 +00:00
|
|
|
test_gui_measuring.o: $(srcdir)/graphics/measuring.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/measuring.cpp
|
2004-12-28 18:18:04 +00:00
|
|
|
|
2011-04-26 22:57:20 +00:00
|
|
|
test_gui_affinematrix.o: $(srcdir)/graphics/affinematrix.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/affinematrix.cpp
|
|
|
|
|
2014-07-26 01:34:50 +00:00
|
|
|
test_gui_boundingbox.o: $(srcdir)/graphics/boundingbox.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/boundingbox.cpp
|
|
|
|
|
2016-06-29 18:51:15 +00:00
|
|
|
test_gui_clippingbox.o: $(srcdir)/graphics/clippingbox.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/clippingbox.cpp
|
|
|
|
|
2016-09-18 21:09:44 +00:00
|
|
|
test_gui_graphmatrix.o: $(srcdir)/graphics/graphmatrix.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/graphmatrix.cpp
|
|
|
|
|
2018-07-02 18:08:29 +00:00
|
|
|
test_gui_graphpath.o: $(srcdir)/graphics/graphpath.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/graphics/graphpath.cpp
|
|
|
|
|
2007-07-21 23:51:19 +00:00
|
|
|
test_gui_config.o: $(srcdir)/config/config.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/config/config.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_bitmapcomboboxtest.o: $(srcdir)/controls/bitmapcomboboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/bitmapcomboboxtest.cpp
|
|
|
|
|
|
|
|
test_gui_bitmaptogglebuttontest.o: $(srcdir)/controls/bitmaptogglebuttontest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/bitmaptogglebuttontest.cpp
|
|
|
|
|
|
|
|
test_gui_bookctrlbasetest.o: $(srcdir)/controls/bookctrlbasetest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/bookctrlbasetest.cpp
|
|
|
|
|
|
|
|
test_gui_buttontest.o: $(srcdir)/controls/buttontest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/buttontest.cpp
|
|
|
|
|
|
|
|
test_gui_checkboxtest.o: $(srcdir)/controls/checkboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/checkboxtest.cpp
|
|
|
|
|
|
|
|
test_gui_checklistboxtest.o: $(srcdir)/controls/checklistboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/checklistboxtest.cpp
|
|
|
|
|
|
|
|
test_gui_choicebooktest.o: $(srcdir)/controls/choicebooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/choicebooktest.cpp
|
|
|
|
|
|
|
|
test_gui_choicetest.o: $(srcdir)/controls/choicetest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/choicetest.cpp
|
|
|
|
|
2008-09-19 10:18:30 +00:00
|
|
|
test_gui_comboboxtest.o: $(srcdir)/controls/comboboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/comboboxtest.cpp
|
|
|
|
|
2011-08-10 15:24:25 +00:00
|
|
|
test_gui_dataviewctrltest.o: $(srcdir)/controls/dataviewctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/dataviewctrltest.cpp
|
|
|
|
|
2011-06-19 22:46:45 +00:00
|
|
|
test_gui_datepickerctrltest.o: $(srcdir)/controls/datepickerctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/datepickerctrltest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_frametest.o: $(srcdir)/controls/frametest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/frametest.cpp
|
|
|
|
|
|
|
|
test_gui_gaugetest.o: $(srcdir)/controls/gaugetest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/gaugetest.cpp
|
|
|
|
|
|
|
|
test_gui_gridtest.o: $(srcdir)/controls/gridtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/gridtest.cpp
|
|
|
|
|
2008-12-03 21:53:10 +00:00
|
|
|
test_gui_headerctrltest.o: $(srcdir)/controls/headerctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/headerctrltest.cpp
|
|
|
|
|
2010-11-27 11:34:34 +00:00
|
|
|
test_gui_htmllboxtest.o: $(srcdir)/controls/htmllboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/htmllboxtest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_hyperlinkctrltest.o: $(srcdir)/controls/hyperlinkctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/hyperlinkctrltest.cpp
|
|
|
|
|
|
|
|
test_gui_itemcontainertest.o: $(srcdir)/controls/itemcontainertest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/itemcontainertest.cpp
|
|
|
|
|
2010-03-21 21:39:15 +00:00
|
|
|
test_gui_label.o: $(srcdir)/controls/label.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/label.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_listbasetest.o: $(srcdir)/controls/listbasetest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/listbasetest.cpp
|
|
|
|
|
|
|
|
test_gui_listbooktest.o: $(srcdir)/controls/listbooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/listbooktest.cpp
|
|
|
|
|
|
|
|
test_gui_listboxtest.o: $(srcdir)/controls/listboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/listboxtest.cpp
|
|
|
|
|
2008-12-03 21:53:10 +00:00
|
|
|
test_gui_listctrltest.o: $(srcdir)/controls/listctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/listctrltest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_listviewtest.o: $(srcdir)/controls/listviewtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/listviewtest.cpp
|
|
|
|
|
2011-02-27 12:46:42 +00:00
|
|
|
test_gui_markuptest.o: $(srcdir)/controls/markuptest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/markuptest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_notebooktest.o: $(srcdir)/controls/notebooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/notebooktest.cpp
|
|
|
|
|
2010-12-20 13:55:40 +00:00
|
|
|
test_gui_ownerdrawncomboboxtest.o: $(srcdir)/controls/ownerdrawncomboboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/ownerdrawncomboboxtest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_pickerbasetest.o: $(srcdir)/controls/pickerbasetest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/pickerbasetest.cpp
|
|
|
|
|
|
|
|
test_gui_pickertest.o: $(srcdir)/controls/pickertest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/pickertest.cpp
|
|
|
|
|
|
|
|
test_gui_radioboxtest.o: $(srcdir)/controls/radioboxtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/radioboxtest.cpp
|
|
|
|
|
|
|
|
test_gui_radiobuttontest.o: $(srcdir)/controls/radiobuttontest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/radiobuttontest.cpp
|
|
|
|
|
|
|
|
test_gui_rearrangelisttest.o: $(srcdir)/controls/rearrangelisttest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/rearrangelisttest.cpp
|
|
|
|
|
|
|
|
test_gui_richtextctrltest.o: $(srcdir)/controls/richtextctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/richtextctrltest.cpp
|
|
|
|
|
2013-01-20 02:09:44 +00:00
|
|
|
test_gui_searchctrltest.o: $(srcdir)/controls/searchctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/searchctrltest.cpp
|
|
|
|
|
2013-06-23 16:38:51 +00:00
|
|
|
test_gui_simplebooktest.o: $(srcdir)/controls/simplebooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/simplebooktest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_slidertest.o: $(srcdir)/controls/slidertest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/slidertest.cpp
|
|
|
|
|
|
|
|
test_gui_spinctrldbltest.o: $(srcdir)/controls/spinctrldbltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/spinctrldbltest.cpp
|
|
|
|
|
|
|
|
test_gui_spinctrltest.o: $(srcdir)/controls/spinctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/spinctrltest.cpp
|
|
|
|
|
2007-09-26 00:28:31 +00:00
|
|
|
test_gui_textctrltest.o: $(srcdir)/controls/textctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/textctrltest.cpp
|
|
|
|
|
2008-09-19 08:55:25 +00:00
|
|
|
test_gui_textentrytest.o: $(srcdir)/controls/textentrytest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/textentrytest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_togglebuttontest.o: $(srcdir)/controls/togglebuttontest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/togglebuttontest.cpp
|
|
|
|
|
|
|
|
test_gui_toolbooktest.o: $(srcdir)/controls/toolbooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/toolbooktest.cpp
|
|
|
|
|
|
|
|
test_gui_treebooktest.o: $(srcdir)/controls/treebooktest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/treebooktest.cpp
|
|
|
|
|
2009-01-17 13:16:25 +00:00
|
|
|
test_gui_treectrltest.o: $(srcdir)/controls/treectrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/treectrltest.cpp
|
|
|
|
|
2011-08-27 14:11:03 +00:00
|
|
|
test_gui_treelistctrltest.o: $(srcdir)/controls/treelistctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/treelistctrltest.cpp
|
|
|
|
|
2010-11-13 15:03:20 +00:00
|
|
|
test_gui_virtlistctrltest.o: $(srcdir)/controls/virtlistctrltest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/virtlistctrltest.cpp
|
|
|
|
|
2011-09-11 10:12:19 +00:00
|
|
|
test_gui_webtest.o: $(srcdir)/controls/webtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/webtest.cpp
|
|
|
|
|
2010-08-22 22:16:05 +00:00
|
|
|
test_gui_windowtest.o: $(srcdir)/controls/windowtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/windowtest.cpp
|
|
|
|
|
2012-11-01 16:45:11 +00:00
|
|
|
test_gui_dialogtest.o: $(srcdir)/controls/dialogtest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/controls/dialogtest.cpp
|
|
|
|
|
2009-03-22 21:31:34 +00:00
|
|
|
test_gui_clone.o: $(srcdir)/events/clone.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/clone.cpp
|
|
|
|
|
2013-07-03 00:26:13 +00:00
|
|
|
test_gui_evtlooptest.o: $(srcdir)/events/evtlooptest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/evtlooptest.cpp
|
|
|
|
|
2009-01-16 16:21:50 +00:00
|
|
|
test_gui_propagation.o: $(srcdir)/events/propagation.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/propagation.cpp
|
|
|
|
|
2010-09-11 10:18:31 +00:00
|
|
|
test_gui_keyboard.o: $(srcdir)/events/keyboard.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/events/keyboard.cpp
|
|
|
|
|
2013-07-03 00:32:40 +00:00
|
|
|
test_gui_exec.o: $(srcdir)/exec/exec.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/exec/exec.cpp
|
|
|
|
|
2009-03-18 15:32:28 +00:00
|
|
|
test_gui_fonttest.o: $(srcdir)/font/fonttest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/font/fonttest.cpp
|
|
|
|
|
2009-06-01 11:46:36 +00:00
|
|
|
test_gui_image.o: $(srcdir)/image/image.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/image/image.cpp
|
|
|
|
|
2008-05-30 19:30:23 +00:00
|
|
|
test_gui_rawbmp.o: $(srcdir)/image/rawbmp.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/image/rawbmp.cpp
|
|
|
|
|
2011-01-13 14:49:55 +00:00
|
|
|
test_gui_htmlparser.o: $(srcdir)/html/htmlparser.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/html/htmlparser.cpp
|
|
|
|
|
2008-10-15 15:55:25 +00:00
|
|
|
test_gui_htmlwindow.o: $(srcdir)/html/htmlwindow.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/html/htmlwindow.cpp
|
|
|
|
|
2018-05-23 16:12:26 +00:00
|
|
|
test_gui_htmprint.o: $(srcdir)/html/htmprint.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/html/htmprint.cpp
|
|
|
|
|
2010-12-03 12:39:57 +00:00
|
|
|
test_gui_accelentry.o: $(srcdir)/menu/accelentry.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/menu/accelentry.cpp
|
|
|
|
|
2010-11-13 15:03:02 +00:00
|
|
|
test_gui_menu.o: $(srcdir)/menu/menu.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/menu/menu.cpp
|
|
|
|
|
2008-09-22 16:03:45 +00:00
|
|
|
test_gui_guifuncs.o: $(srcdir)/misc/guifuncs.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/misc/guifuncs.cpp
|
|
|
|
|
2008-03-31 15:22:10 +00:00
|
|
|
test_gui_selstoretest.o: $(srcdir)/misc/selstoretest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/misc/selstoretest.cpp
|
2009-01-11 00:39:22 +00:00
|
|
|
|
|
|
|
test_gui_garbage.o: $(srcdir)/misc/garbage.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/misc/garbage.cpp
|
2008-03-31 15:22:10 +00:00
|
|
|
|
2013-10-14 15:08:35 +00:00
|
|
|
test_gui_safearrayconverttest.o: $(srcdir)/misc/safearrayconverttest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/misc/safearrayconverttest.cpp
|
|
|
|
|
2009-03-24 23:13:02 +00:00
|
|
|
test_gui_settings.o: $(srcdir)/misc/settings.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/misc/settings.cpp
|
|
|
|
|
2008-12-27 11:14:10 +00:00
|
|
|
test_gui_socket.o: $(srcdir)/net/socket.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/net/socket.cpp
|
|
|
|
|
2017-12-14 23:43:24 +00:00
|
|
|
test_gui_tlw.o: $(srcdir)/persistence/tlw.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/persistence/tlw.cpp
|
|
|
|
|
|
|
|
test_gui_dataview.o: $(srcdir)/persistence/dataview.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/persistence/dataview.cpp
|
|
|
|
|
2010-03-18 15:07:10 +00:00
|
|
|
test_gui_boxsizer.o: $(srcdir)/sizers/boxsizer.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/sizers/boxsizer.cpp
|
|
|
|
|
2015-04-04 16:19:49 +00:00
|
|
|
test_gui_gridsizer.o: $(srcdir)/sizers/gridsizer.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/sizers/gridsizer.cpp
|
|
|
|
|
2011-02-08 13:36:13 +00:00
|
|
|
test_gui_wrapsizer.o: $(srcdir)/sizers/wrapsizer.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/sizers/wrapsizer.cpp
|
|
|
|
|
2011-05-01 14:58:58 +00:00
|
|
|
test_gui_toplevel.o: $(srcdir)/toplevel/toplevel.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/toplevel/toplevel.cpp
|
|
|
|
|
2011-01-19 10:48:28 +00:00
|
|
|
test_gui_valnum.o: $(srcdir)/validators/valnum.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/validators/valnum.cpp
|
|
|
|
|
2008-05-25 02:56:22 +00:00
|
|
|
test_gui_clientsize.o: $(srcdir)/window/clientsize.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/window/clientsize.cpp
|
|
|
|
|
2008-05-25 03:08:31 +00:00
|
|
|
test_gui_setsize.o: $(srcdir)/window/setsize.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/window/setsize.cpp
|
|
|
|
|
2010-11-07 14:00:59 +00:00
|
|
|
test_gui_xrctest.o: $(srcdir)/xml/xrctest.cpp $(TEST_GUI_ODEP)
|
|
|
|
$(CXXC) -c -o $@ $(TEST_GUI_CXXFLAGS) $(srcdir)/xml/xrctest.cpp
|
|
|
|
|
2004-03-03 22:56:16 +00:00
|
|
|
|
2009-04-16 14:47:22 +00:00
|
|
|
# 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
|
2014-04-12 00:10:54 +00:00
|
|
|
failtest: failtest_combobox failtest_evthandler failtest_weakref
|
2011-08-21 12:06:16 +00:00
|
|
|
|
|
|
|
failtest_combobox:
|
|
|
|
@$(RM) test_gui_comboboxtest.o
|
|
|
|
if $(MAKE) CXXWARNINGS=-DTEST_INVALID_COMBOBOX_ISEMPTY test_gui_comboboxtest.o 2>/dev/null; then \
|
|
|
|
echo "*** Compilation with TEST_INVALID_COMBOBOX_ISEMPTY unexpectedly succeeded.">&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
failtest_evthandler:
|
2009-04-16 14:47:22 +00:00
|
|
|
@$(RM) test_evthandler.o
|
2009-04-16 21:33:37 +00:00
|
|
|
@for d in GLOBAL STATIC METHOD FUNCTOR NO_HANDLER DERIVED WRONG_CLASS; do \
|
2009-04-16 14:47:22 +00:00
|
|
|
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
|
|
|
|
|
2014-04-12 00:10:54 +00:00
|
|
|
failtest_weakref:
|
|
|
|
@$(RM) test_weakref.o
|
|
|
|
if $(MAKE) CXXWARNINGS=-DTEST_INVALID_INCOMPLETE_WEAKREF test_weakref.o 2>/dev/null; then \
|
|
|
|
echo "*** Compilation with TEST_INVALID_INCOMPLETE_WEAKREF unexpectedly succeeded.">&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi; \
|
|
|
|
exit 0
|
|
|
|
|
2009-04-16 14:47:22 +00:00
|
|
|
.PHONY: failtest
|
|
|
|
|
2004-03-03 22:56:16 +00:00
|
|
|
# Include dependency info, if present:
|
2008-10-08 15:44:49 +00:00
|
|
|
@IF_GNU_MAKE@-include ./.deps/*.d
|
2004-03-03 22:56:16 +00:00
|
|
|
|
2016-06-24 21:34:58 +00:00
|
|
|
.PHONY: all install uninstall clean distclean test_gui_bundle data data-images fr ja
|