diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-07-21 03:46:49 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-07-21 03:46:49 +0100 |
| commit | 7183198c4db92a634245ff91ccd49f4bed875b73 (patch) | |
| tree | b9c56c62a741e6cb3c488d7d2ecba20e20490c74 /test/wscript | |
| parent | 138aada1a50c6b6e17864f705ce9f18bcd647808 (diff) | |
Remove long tests in favour of full test corpus.
Diffstat (limited to 'test/wscript')
| -rw-r--r-- | test/wscript | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/test/wscript b/test/wscript index 2869cd52c..cd9abb6f6 100644 --- a/test/wscript +++ b/test/wscript @@ -7,17 +7,9 @@ def configure(conf): def build(bld): obj = bld(features = 'cxx cxxprogram') - obj.name = 'short-unit-tests' + obj.name = 'unit-tests' obj.uselib = 'BOOST_TEST' obj.use = 'libdvdomatic' - obj.source = 'short.cc' - obj.target = 'short-unit-tests' - obj.install_path = '' - - obj = bld(features = 'cxx cxxprogram') - obj.name = 'long-unit-tests' - obj.uselib = 'BOOST_TEST' - obj.use = 'libdvdomatic' - obj.source = 'long.cc' - obj.target = 'long-unit-tests' + obj.source = 'test.cc' + obj.target = 'unit-tests' obj.install_path = '' |
