summaryrefslogtreecommitdiff
path: root/test/tests.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-09-25 15:43:15 +0100
committerCarl Hetherington <cth@carlh.net>2013-09-25 15:43:15 +0100
commit43465aa4037cec6d351a842a6624a50685d6c127 (patch)
treec4a7ddc4ee7fd49492588422bb53b2c84760e83c /test/tests.cc
parentb405b414993458babbb4532ddeeef9928ec7c06e (diff)
Split tests up.
Diffstat (limited to 'test/tests.cc')
-rw-r--r--test/tests.cc94
1 files changed, 0 insertions, 94 deletions
diff --git a/test/tests.cc b/test/tests.cc
deleted file mode 100644
index 5e63d5ed..00000000
--- a/test/tests.cc
+++ /dev/null
@@ -1,94 +0,0 @@
-/*
- Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
-#include <cmath>
-#include <boost/filesystem.hpp>
-#include <libxml++/libxml++.h>
-#include "KM_prng.h"
-#include "dcp.h"
-#include "util.h"
-#include "metadata.h"
-#include "types.h"
-#include "exceptions.h"
-#include "subtitle_asset.h"
-#include "picture_asset.h"
-#include "sound_asset.h"
-#include "reel.h"
-#include "certificates.h"
-#include "signer_chain.h"
-#include "gamma_lut.h"
-#include "cpl.h"
-#include "signer.h"
-
-#define BOOST_TEST_DYN_LINK
-#define BOOST_TEST_MODULE libdcp_test
-#include <boost/test/unit_test.hpp>
-
-using std::string;
-using std::cout;
-using std::vector;
-using std::list;
-using boost::shared_ptr;
-
-struct TestConfig
-{
- TestConfig()
- {
- libdcp::init ();
- }
-};
-
-BOOST_GLOBAL_FIXTURE (TestConfig);
-
-static string
-j2c (int)
-{
- return "test/data/32x32_red_square.j2c";
-}
-
-static string
-wav (libdcp::Channel)
-{
- return "test/data/1s_24-bit_48k_silence.wav";
-}
-
-static string test_corpus = "../libdcp-test";
-
-#include "utc_offset_to_string_test.cc"
-#include "lut_test.cc"
-#include "util_test.cc"
-#include "decryption_test.cc"
-#include "kdm_test.cc"
-#include "dcp_test.cc"
-#include "error_test.cc"
-#include "read_dcp_test.cc"
-#include "subtitle_tests.cc"
-#include "dcp_time_test.cc"
-#include "color_test.cc"
-#include "recovery_test.cc"
-#include "certificates_test.cc"
-
-BOOST_AUTO_TEST_CASE (signer_chain)
-{
- boost::filesystem::remove_all ("build/test/signer");
- boost::filesystem::create_directory ("build/test/signer");
- libdcp::make_signer_chain ("build/test/signer");
-}
-
-#include "encryption_test.cc"