Home | History | Annotate | Download | only in tests

Lines Matching refs:testing

36 class DEATHTEST : public testing::Test {
63 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
67 testing::KilledBySignal(SIGABRT), "");
75 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
80 testing::KilledBySignal(SIGABRT), "");
88 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
92 testing::KilledBySignal(SIGABRT), "");
100 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
105 testing::KilledBySignal(SIGABRT), "");
113 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
118 testing::KilledBySignal(SIGABRT), "");
126 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
129 testing::KilledBySignal(SIGABRT), "");
148 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
149 ASSERT_EXIT(vsprintf_helper2("%s", "0123456789"), testing::KilledBySignal(SIGABRT), "");
153 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
154 ASSERT_EXIT(vsprintf_helper2("0123456789"), testing::KilledBySignal(SIGABRT), "");
174 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
175 ASSERT_EXIT(vsnprintf_helper2("%s", "0123456789"), testing::KilledBySignal(SIGABRT), "");
179 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
180 ASSERT_EXIT(vsnprintf_helper2("0123456789"), testing::KilledBySignal(SIGABRT), "");
190 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
194 testing::KilledBySignal(SIGABRT), "");
208 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
212 testing::KilledBySignal(SIGABRT), "");
226 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
230 testing::KilledBySignal(SIGABRT), "");
244 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
248 testing::KilledBySignal(SIGABRT), "");
261 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
266 testing::KilledBySignal(SIGABRT), "");
278 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
283 testing::KilledBySignal(SIGABRT), "");
295 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
300 testing::KilledBySignal(SIGABRT), "");
312 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
318 testing::KilledBySignal(SIGABRT), "");
329 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
333 ASSERT_EXIT(strncat(myfoo.a, "9", n), testing::KilledBySignal(SIGABRT), "");
341 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
345 ASSERT_EXIT(strncat(myfoo.a, "0123456789", n), testing::KilledBySignal(SIGABRT), "");
350 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
355 ASSERT_EXIT(strncat(myfoo.b, myfoo.a, n), testing::KilledBySignal(SIGABRT), "");
362 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
367 ASSERT_EXIT(strcat(myfoo.a, src), testing::KilledBySignal(SIGABRT), "");
372 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
376 ASSERT_EXIT(strcat(myfoo.b, myfoo.a), testing::KilledBySignal(SIGABRT), "");
380 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
384 ASSERT_EXIT(snprintf(myfoo.b, n, "a%s", myfoo.a), testing::KilledBySignal(SIGABRT), "");
388 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
392 ASSERT_EXIT(bzero(myfoo.b, n), testing::KilledBySignal(SIGABRT), "");
400 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
403 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
413 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
416 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
426 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
429 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
439 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
442 ASSERT_EXIT(strcpy(buf, orig), testing::KilledBySignal(SIGABRT), "");
451 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
454 ASSERT_EXIT(printf("%zd", strlen(buf)), testing::KilledBySignal(SIGABRT), "");
462 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
465 ASSERT_EXIT(printf("%s", strchr(buf, 'a')), testing::KilledBySignal(SIGABRT), "");
473 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
476 ASSERT_EXIT(printf("%s", strrchr(buf, 'a')), testing::KilledBySignal(SIGABRT), "");
484 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
489 ASSERT_EXIT(strlcpy(bufb, bufa, n), testing::KilledBySignal(SIGABRT), "");
497 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
503 ASSERT_EXIT(strlcat(bufb, bufa, n), testing::KilledBySignal(SIGABRT), "");
510 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
514 ASSERT_EXIT(sprintf(buf, "%s", source_buf), testing::KilledBySignal(SIGABRT), "");
521 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
525 ASSERT_EXIT(sprintf(buf, "%s", source_buf), testing::KilledBySignal(SIGABRT), "");
531 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
533 ASSERT_EXIT(sprintf(buf, "aaaaa"), testing::KilledBySignal(SIGABRT), "");
548 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
549 ASSERT_EXIT(vsprintf_helper("%s", "0123456789"), testing::KilledBySignal(SIGABRT), "");
553 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
554 ASSERT_EXIT(vsprintf_helper("0123456789"), testing::KilledBySignal(SIGABRT), "");
570 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
571 ASSERT_EXIT(vsnprintf_helper("%s", "0123456789"), testing::KilledBySignal(SIGABRT), "");
575 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
576 ASSERT_EXIT(vsnprintf_helper("0123456789"), testing::KilledBySignal(SIGABRT), "");
580 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
584 ASSERT_EXIT(strncat(buf, "9", n), testing::KilledBySignal(SIGABRT), "");
588 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
592 ASSERT_EXIT(strncat(buf, "0123456789", n), testing::KilledBySignal(SIGABRT), "");
596 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
601 ASSERT_EXIT(strcat(buf, src), testing::KilledBySignal(SIGABRT), "");
605 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
609 ASSERT_EXIT(memmove(buf + 11, buf, n), testing::KilledBySignal(SIGABRT), "");
613 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
618 ASSERT_EXIT(memcpy(bufb, bufa, n), testing::KilledBySignal(SIGABRT), "");
622 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
627 ASSERT_EXIT(stpncpy(bufb, bufa, n), testing::KilledBySignal(SIGABRT), "");
631 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
635 ASSERT_EXIT(stpncpy(dest, src, sizeof(dest)), testing::KilledBySignal(SIGABRT), "");
639 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
644 ASSERT_EXIT(strncpy(bufb, bufa, n), testing::KilledBySignal(SIGABRT), "");
649 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
653 ASSERT_EXIT(strncpy(dest, src, sizeof(dest)), testing::KilledBySignal(SIGABRT), "");
657 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
662 ASSERT_EXIT(snprintf(bufb, n, "%s", bufa), testing::KilledBySignal(SIGABRT), "");
666 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
670 ASSERT_EXIT(bzero(buf, n), testing::KilledBySignal(SIGABRT), "");
674 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
676 ASSERT_EXIT(umask(mask), testing::KilledBySignal(SIGABRT), "");
680 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
683 ASSERT_EXIT(recv(0, buf, data_len, 0), testing::KilledBySignal(SIGABRT), "");
688 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
691 ASSERT_EXIT(FD_ISSET(-1, &set), testing::KilledBySignal(SIGABRT), "");
696 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
699 ASSERT_EXIT(FD_ISSET(0, set), testing::KilledBySignal(SIGABRT), "");
706 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
709 ASSERT_EXIT(FD_ZERO_function(set), testing::KilledBySignal(SIGABRT), "");
713 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
717 ASSERT_EXIT(read(fd, buf, ct), testing::KilledBySignal(SIGABRT), "");