mirror of
https://github.com/aria2/aria2.git
synced 2025-04-05 21:47:37 +03:00
Included missing iostream. * test/AllTest.cc * test/BtDependencyTest.cc * test/BtExtendedMessageTest.cc * test/DHTConnectionImplTest.cc * test/DHTMessageFactoryImplTest.cc * test/DHTMessageTrackerEntryTest.cc * test/DHTNodeTest.cc * test/DHTRoutingTableSerializerTest.cc * test/DefaultBtAnnounceTest.cc * test/DefaultBtContextTest.cc * test/DefaultBtMessageFactoryTest.cc * test/DefaultExtensionMessageFactoryTest.cc * test/HandshakeExtensionMessageTest.cc * test/HttpResponseTest.cc * test/MetalinkProcessorTest.cc * test/MultiFileAllocationIteratorTest.cc * test/SocketCoreTest.cc * test/UTPexExtensionMessageTest.cc
46 lines
1.2 KiB
C++
46 lines
1.2 KiB
C++
#include "CookieBoxFactory.h"
|
|
#include <iostream>
|
|
#include <cppunit/CompilerOutputter.h>
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
#ifdef HAVE_LIBSSL
|
|
# include <openssl/err.h>
|
|
# include <openssl/ssl.h>
|
|
#endif // HAVE_LIBSSL
|
|
#ifdef HAVE_LIBGNUTLS
|
|
# include <gnutls/gnutls.h>
|
|
#endif // HAVE_LIBGNUTLS
|
|
|
|
using aria2::SharedHandle;
|
|
using aria2::SingletonHolder;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
CppUnit::Test* suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
|
|
CppUnit::TextUi::TestRunner runner;
|
|
runner.addTest(suite);
|
|
|
|
runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr));
|
|
|
|
// setup
|
|
|
|
#ifdef HAVE_LIBSSL
|
|
// for SSL initialization
|
|
SSL_load_error_strings();
|
|
SSL_library_init();
|
|
#endif // HAVE_LIBSSL
|
|
#ifdef HAVE_LIBGNUTLS
|
|
gnutls_global_init();
|
|
#endif // HAVE_LIBGNUTLS
|
|
|
|
SharedHandle<aria2::CookieBoxFactory> cookieBoxFactory = new aria2::CookieBoxFactory();
|
|
SingletonHolder<SharedHandle<aria2::CookieBoxFactory> >::instance(cookieBoxFactory);
|
|
|
|
// Run the tests.
|
|
bool successfull = runner.run();
|
|
|
|
#ifdef HAVE_LIBGNUTLS
|
|
gnutls_global_deinit();
|
|
#endif // HAVE_LIBGNUTLS
|
|
|
|
return successfull ? 0 : 1;
|
|
}
|