123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #include "common.h"
- #include <iostream>
- #include <cppunit/CompilerOutputter.h>
- #include <cppunit/extensions/TestFactoryRegistry.h>
- #include <cppunit/ui/text/TestRunner.h>
- #include "Platform.h"
- #include "SocketCore.h"
- #include "util.h"
- #include "console.h"
- #include "LogFactory.h"
- #include "prefs.h"
- int main(int argc, char* argv[]) {
- aria2::global::initConsole(false);
- aria2::Platform platform;
- #ifdef ENABLE_NLS
- // Set locale to C to prevent the messages to be localized.
- setlocale (LC_CTYPE, "C");
- setlocale (LC_MESSAGES, "C");
- #endif // ENABLE_NLS
- // By default, SocketCore uses AF_UNSPEC for getaddrinfo hints to
- // resolve address. Sometime SocketCore::bind() and
- // SocketCore::establishConnection() use difference protocl family
- // and latter cannot connect to former. To avoid this situation, we
- // limit protocol family to AF_INET for unit tests.
- aria2::SocketCore::setProtocolFamily(AF_INET);
- // If AI_ADDRCONFIG is set, tests fail if IPv4 address is not
- // configured.
- aria2::setDefaultAIFlags(0);
- // Create output directory
- aria2::util::mkdirs(A2_TEST_OUT_DIR);
- aria2::LogFactory::setConsoleLogLevel(aria2::V_DEBUG);
- aria2::LogFactory::reconfigure();
- CppUnit::Test* suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
- CppUnit::TextUi::TestRunner runner;
- runner.addTest(suite);
- runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr));
- // Run the tests.
- bool successfull = runner.run();
- return successfull ? 0 : 1;
- }
|