2005-08-04 23:23:48 +02:00
|
|
|
|
2005-08-05 21:58:58 +02:00
|
|
|
#ifdef _MSC_VER
|
2006-08-04 11:51:03 +02:00
|
|
|
#pragma warning(disable:4244 4267)
|
2005-08-05 21:58:58 +02:00
|
|
|
#endif
|
2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2005-10-18 13:39:56 +02:00
|
|
|
#include "xpath_test_suite.hpp"
|
2005-08-04 23:23:48 +02:00
|
|
|
|
|
|
|
/////////////////////////////////////////
|
2005-10-31 13:07:30 +01:00
|
|
|
int main(int argc, const char** argv)
|
2005-08-04 23:23:48 +02:00
|
|
|
{
|
2007-12-08 22:20:28 +01:00
|
|
|
bool ok = XPath_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
|
|
|
|
return !ok;
|
2005-08-04 23:23:48 +02:00
|
|
|
} // main
|
|
|
|
|