ReactOS 0.4.15-dev-8021-g7ce96fd
cstring_test.cpp
Go to the documentation of this file.
1#define _STLP_DO_IMPORT_CSTD_FUNCTIONS
2
3#include <cstring>
4
6
7//This test purpose is to check the right import of math.h C symbols
8//into the std namespace so we do not use the using namespace std
9//specification
10
11//
12// TestCase class
13//
14class CStringTest : public CPPUNIT_NS::TestCase
15{
17#if defined (STLPORT) && !defined (_STLP_USE_NAMESPACES)
19#endif
22
23 protected:
24 void import_checks();
25};
26
28
29#if defined (_MSC_VER) && (_MSC_VER >= 1400)
30//For deprecated symbols like strcat, strtok...
31# pragma warning (disable : 4996)
32#endif
33
34//
35// tests implementation
36//
38{
39#if !defined (STLPORT) || defined (_STLP_USE_NAMESPACES)
40 std::size_t bar = 0;
41 CPPUNIT_CHECK( bar == 0 );
42
43 CPPUNIT_CHECK( std::memchr("foo", 'o', 3) != NULL );
44 CPPUNIT_CHECK( std::memcmp("foo1", "foo2", 3) == 0 );
45 char buf1[1], buf2[1];
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL );
49 char buf[16]; buf[0] = 0;
50 const char* foo = "foo";
51# if !defined(_WIN32_WCE)
52 CPPUNIT_CHECK( std::strcoll("foo", "foo") == 0 );
53 CPPUNIT_CHECK( std::strerror(0) != NULL );
54# endif
55 CPPUNIT_CHECK( std::strcat((char*)buf, foo) == (char*)buf ); // buf <- foo
56 CPPUNIT_CHECK( std::strchr(foo, 'o') != NULL );
57 CPPUNIT_CHECK( std::strcmp("foo1", "foo2") < 0 );
58 CPPUNIT_CHECK( std::strcpy((char*)buf, foo) == (char*)buf ); // buf <- foo
59 CPPUNIT_CHECK( std::strcspn("foo", "o") == 1 );
60 CPPUNIT_CHECK( std::strlen("foo") == 3 );
61 CPPUNIT_CHECK( std::strncat((char*)buf, foo, 2) == (char*)buf ); // buf <- foofo
62 CPPUNIT_CHECK( std::strncmp("foo1", "foo2", 3) == 0 );
63 CPPUNIT_CHECK( std::strncpy((char*)buf, foo, 3) == (char*)buf ); // buf <- foo
64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 );
65 const char* foofoo = "foofoo";
66 CPPUNIT_CHECK( std::strrchr(foofoo, 'f') == foofoo + 3 );
67 CPPUNIT_CHECK( std::strspn(foofoo, "aofz") == 6 );
68 CPPUNIT_CHECK( std::strstr(foo, "") == foo );
69 char foofoobuf[] = "foofoo";
70 CPPUNIT_CHECK( std::strtok(foofoobuf, "z") != NULL );
71# if !defined(_WIN32_WCE)
72 CPPUNIT_CHECK( std::strxfrm((char*)buf, foo, 3) != 0 );
73# endif
74#endif
75}
void import_checks()
CPPUNIT_TEST(import_checks)
CPPUNIT_TEST_SUITE_END()
CPPUNIT_TEST_SUITE(CStringTest)
#define CPPUNIT_CHECK(X)
Definition: cppunit_mini.h:195
#define CPPUNIT_IGNORE
Definition: cppunit_mini.h:185
#define CPPUNIT_TEST_SUITE_REGISTRATION(X)
Definition: cppunit_mini.h:193
#define NULL
Definition: types.h:112
void bar()
Definition: ehthrow.cxx:142
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751