arabica/tests/XSLT/main.cpp

15 lines
359 B
C++
Raw Normal View History

#ifdef _MSC_VER
#pragma warning(disable : 4250)
#endif
// #include "scope_test.hpp"
#include "xslt_test.hpp"
int main(int argc, const char* argv[])
{
2012-11-20 09:13:03 +01:00
bool ok = XSLT_test_suite<std::string, Arabica::default_string_adaptor<std::string> >(argc, argv);
//return !ok;
return 77; // the make check magic ignore this result marker
2008-06-04 22:32:06 +02:00
} // main