diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-11-08 07:31:41 -0800 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-11-08 07:31:41 -0800 |
commit | bff09f0ff2795d98b75c5579b1e50254eecf01a4 (patch) | |
tree | f1d8db3f70ef6bb7427ce8956fa263b11a37c3cd /src/cppunit | |
parent | 292026e36ce5b9ebdad86e99304be2ded8c199d8 (diff) | |
download | cppunit-feature/parameterized.tar.gz |
add parameterized test callersfeature/parameterized
Diffstat (limited to 'src/cppunit')
-rw-r--r-- | src/cppunit/Makefile.am | 6 | ||||
-rw-r--r-- | src/cppunit/TestParameterizedRunner.cpp | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/cppunit/Makefile.am b/src/cppunit/Makefile.am index 15cc24d..3bdcec7 100644 --- a/src/cppunit/Makefile.am +++ b/src/cppunit/Makefile.am @@ -61,6 +61,12 @@ libcppunit_la_SOURCES = \ XmlOutputterHook.cpp \ Win32DynamicLibraryManager.cpp +if WITH_OPTIONAL_FEATURES + +libcppunit_la_SOURCES += \ + TestParameterizedRunner.cpp +endif + libcppunit_la_LDFLAGS= \ -no-undefined -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ -release $(LT_RELEASE) $(LIBADD_DL) diff --git a/src/cppunit/TestParameterizedRunner.cpp b/src/cppunit/TestParameterizedRunner.cpp new file mode 100644 index 0000000..163b4d3 --- /dev/null +++ b/src/cppunit/TestParameterizedRunner.cpp @@ -0,0 +1 @@ + |