mirror of
https://github.com/aria2/aria2.git
synced 2025-04-06 14:07:37 +03:00
Applied Ross's aria2-0.13.2+1-mingw-4.patch. In this commit, only the follow sources are applied. * src/Platform.h: I removed HAVE_WINSOCK2_H directive from Platform.h. * src/Platform.cc: Moved common setup/teardown code to Platform class. I moved #endif // HAVE_WINSOCK2_H to the front of #include "DlAbortEx.h" I included locale.h from Platform.cc. * src/main.cc: Moved common setup/teardown code to Platform class. * test/AllTest.cc: Use Platform class. Set locale to C in AllTest.cc to prevent the messages to be localized.
36 lines
1,003 B
C++
36 lines
1,003 B
C++
#include "Platform.h"
|
|
#include "CookieBoxFactory.h"
|
|
#include <iostream>
|
|
#include <cppunit/CompilerOutputter.h>
|
|
#include <cppunit/extensions/TestFactoryRegistry.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
|
|
using aria2::SharedHandle;
|
|
using aria2::SingletonHolder;
|
|
|
|
int main(int argc, char* argv[]) {
|
|
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
|
|
|
|
CppUnit::Test* suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
|
|
CppUnit::TextUi::TestRunner runner;
|
|
runner.addTest(suite);
|
|
|
|
runner.setOutputter(new CppUnit::CompilerOutputter(&runner.result(), std::cerr));
|
|
|
|
// setup
|
|
|
|
SharedHandle<aria2::CookieBoxFactory> cookieBoxFactory
|
|
(new aria2::CookieBoxFactory());
|
|
SingletonHolder<SharedHandle<aria2::CookieBoxFactory> >::instance(cookieBoxFactory);
|
|
|
|
// Run the tests.
|
|
bool successfull = runner.run();
|
|
|
|
return successfull ? 0 : 1;
|
|
}
|