Home
last modified time | relevance | path

Searched refs:testdata2 (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/test/
Dwpackettest.c361 unsigned char testdata2[259] = { 0x82, 0x01, 0x00 }; in test_WPACKET_init_der() local
389 if (!TEST_int_gt(RAND_bytes(&testdata2[3], sizeof(testdata2) - 3), 0)) in test_WPACKET_init_der()
406 || !TEST_true(WPACKET_memcpy(&pkt, &testdata2[3], in test_WPACKET_init_der()
407 sizeof(testdata2) - 3)) in test_WPACKET_init_der()
420 || !TEST_mem_eq(WPACKET_get_curr(&pkt), written[1], testdata2, in test_WPACKET_init_der()
421 sizeof(testdata2))) in test_WPACKET_init_der()
/third_party/libfuse/test/
Dtest_syscalls.c41 static char testdata2[] = "1234567890-=qwertyuiop[]\asdfghjkl;'zxcvbnm,./"; variable
46 static int testdata2len = sizeof(testdata2) - 1;
1119 res = create_file(testfile_r, testdata2, testdata2len); in do_test_open()
1159 err += check_data(testfile, testdata2, 0, testdata2len); in do_test_open()
1180 testdata2 + datalen, in do_test_open()
1220 testdata2 + datalen, in do_test_open()
1223 err += check_buffer(buf, testdata2, in do_test_open()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationMiscTest.java1430 String[] testdata2 = { in TestContraction() local
1502 if (coll.compare(testdata2[0], testdata2[1]) != -1) { in TestContraction()
1503 errln("Expected " + testdata2[0] + " < " + testdata2[1]); in TestContraction()
1506 if (coll.compare(testdata2[1], testdata2[2]) != -1) { in TestContraction()
1507 errln("Expected " + testdata2[1] + " < " + testdata2[2]); in TestContraction()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationMiscTest.java1433 String[] testdata2 = { in TestContraction() local
1505 if (coll.compare(testdata2[0], testdata2[1]) != -1) { in TestContraction()
1506 errln("Expected " + testdata2[0] + " < " + testdata2[1]); in TestContraction()
1509 if (coll.compare(testdata2[1], testdata2[2]) != -1) { in TestContraction()
1510 errln("Expected " + testdata2[1] + " < " + testdata2[2]); in TestContraction()
/third_party/icu/icu4c/source/test/cintltst/
Dcmsccoll.c1411 const static UChar testdata2[][2] = { in TestContraction() local
1486 if (ucol_strcoll(coll, testdata2[0], 2, testdata2[1], 2) != UCOL_LESS) { in TestContraction()
1488 testdata2[0][0], testdata2[0][1], testdata2[1][0], in TestContraction()
1489 testdata2[1][1]); in TestContraction()
1492 if (ucol_strcoll(coll, testdata2[1], 2, testdata2[2], 2) != UCOL_LESS) { in TestContraction()
1494 testdata2[1][0], testdata2[1][1], testdata2[2][0], in TestContraction()
1495 testdata2[2][1]); in TestContraction()
/third_party/python/Lib/test/
Dtest_zipfile.py2297 testdata2 = b''.join(zipdata2)
2298 self.assertEqual(len(testdata2), len(self.data))
2299 self.assertEqual(testdata2, self.data)