// S : tags libc c // S : expect --result valid // S : cc -o test.bc -D_PDCLIB_BUILD -DTEST $file // S : verify -o nofail:malloc test.bc #include #include #include #include "_PDCLIB_test.h" int main( void ) { char s[] = "xxxxxxxxxxx"; TESTCASE( memcpy( s, abcde, 6 ) == s ); TESTCASE( s[4] == 'e' ); TESTCASE( s[5] == '\0' ); TESTCASE( memcpy( s + 5, abcde, 5 ) == s + 5 ); TESTCASE( s[9] == 'e' ); TESTCASE( s[10] == 'x' ); return TEST_RESULTS; }