mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-25 21:58:21 +01:00
19 lines
463 B
C++
19 lines
463 B
C++
#ifdef _MSC_VER
|
|
#pragma warning(disable: 4786 4250 4503 4244)
|
|
#endif
|
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
|
#include <iostream>
|
|
#endif
|
|
|
|
#include "../DOM/dom_test_suite.hpp"
|
|
|
|
////////////////////////////////////////////////
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
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
|
|
} // main
|
|
|
|
// end of file
|