2005-10-31 12:42:21 +01:00
|
|
|
#ifdef _MSC_VER
|
2010-12-09 12:34:15 +01:00
|
|
|
#pragma warning(disable: 4786 4250 4503 4244)
|
2005-10-31 12:42:21 +01:00
|
|
|
#endif
|
|
|
|
|
2005-11-25 16:54:08 +01:00
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
|
|
#include <iostream>
|
|
|
|
#endif
|
|
|
|
|
2005-10-31 12:42:21 +01:00
|
|
|
#include "../DOM/dom_test_suite.hpp"
|
|
|
|
|
|
|
|
////////////////////////////////////////////////
|
|
|
|
int main(int argc, const char* argv[])
|
|
|
|
{
|
2010-12-29 17:17:57 +01:00
|
|
|
bool ok = DOM_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
|
|
|
|
return !ok;
|
|
|
|
// return 77; // the make check magic ignore this result marker
|
2005-10-31 12:42:21 +01:00
|
|
|
} // main
|
|
|
|
|
|
|
|
// end of file
|