• Home
  • Raw
  • Download

Lines Matching refs:CPPUNIT_CHECK

41   CPPUNIT_CHECK( bar == 0 );  in import_checks()
43 CPPUNIT_CHECK( std::memchr("foo", 'o', 3) != NULL ); in import_checks()
44 CPPUNIT_CHECK( std::memcmp("foo1", "foo2", 3) == 0 ); in import_checks()
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL ); in import_checks()
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL ); in import_checks()
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL ); in import_checks()
52 CPPUNIT_CHECK( std::strcoll("foo", "foo") == 0 ); in import_checks()
53 CPPUNIT_CHECK( std::strerror(0) != NULL ); in import_checks()
55 CPPUNIT_CHECK( std::strcat((char*)buf, foo) == (char*)buf ); // buf <- foo in import_checks()
56 CPPUNIT_CHECK( std::strchr(foo, 'o') != NULL ); in import_checks()
57 CPPUNIT_CHECK( std::strcmp("foo1", "foo2") < 0 ); in import_checks()
58 CPPUNIT_CHECK( std::strcpy((char*)buf, foo) == (char*)buf ); // buf <- foo in import_checks()
59 CPPUNIT_CHECK( std::strcspn("foo", "o") == 1 ); in import_checks()
60 CPPUNIT_CHECK( std::strlen("foo") == 3 ); in import_checks()
61 CPPUNIT_CHECK( std::strncat((char*)buf, foo, 2) == (char*)buf ); // buf <- foofo in import_checks()
62 CPPUNIT_CHECK( std::strncmp("foo1", "foo2", 3) == 0 ); in import_checks()
63 CPPUNIT_CHECK( std::strncpy((char*)buf, foo, 3) == (char*)buf ); // buf <- foo in import_checks()
64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 ); in import_checks()
66 CPPUNIT_CHECK( std::strrchr(foofoo, 'f') == foofoo + 3 ); in import_checks()
67 CPPUNIT_CHECK( std::strspn(foofoo, "aofz") == 6 ); in import_checks()
68 CPPUNIT_CHECK( std::strstr(foo, "") == foo ); in import_checks()
70 CPPUNIT_CHECK( std::strtok(foofoobuf, "z") != NULL ); in import_checks()
72 CPPUNIT_CHECK( std::strxfrm((char*)buf, foo, 3) != 0 ); in import_checks()