2005-10-17 23:24:43 +02:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(disable:4224 4267)
|
|
|
|
#endif
|
|
|
|
|
2005-11-25 16:54:08 +01:00
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
2005-10-18 13:39:56 +02:00
|
|
|
#include <iostream>
|
2005-11-25 16:54:08 +01:00
|
|
|
#endif
|
|
|
|
|
2006-09-12 23:21:48 +02:00
|
|
|
#include "xpath_test_suite.hpp"
|
2005-10-17 23:24:43 +02:00
|
|
|
|
|
|
|
/////////////////////////////////////////
|
2005-10-31 13:07:30 +01:00
|
|
|
int main(int argc, const char** argv)
|
2005-10-17 23:24:43 +02:00
|
|
|
{
|
2005-11-25 16:54:08 +01:00
|
|
|
#ifndef ARABICA_NO_WCHAR_T
|
2005-10-18 13:39:56 +02:00
|
|
|
XPath_test_suite<std::wstring, Arabica::default_string_adaptor<std::wstring> >(argc, argv);
|
2005-11-25 16:54:08 +01:00
|
|
|
#else
|
|
|
|
std::cout << "No wide tests on this platform" << std::endl;
|
|
|
|
#endif
|
2005-10-17 23:24:43 +02:00
|
|
|
} // main
|
|
|
|
|