Home
last modified time | relevance | path

Searched refs:test_msg (Results 1 – 15 of 15) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/setresuid/
Dsetresuid02.c32 char *test_msg; member
65 *tc->sav_uid), "%s", tc->test_msg); in run()
70 if (tst_check_resuid(tc->test_msg, *tc->exp_real_uid, in run()
72 tst_res(TPASS, "%s works as expected", tc->test_msg); in run()
Dsetresuid01.c27 char *test_msg; member
68 *tc->sav_uid), "%s", tc->test_msg); in run()
73 if (tst_check_resuid(tc->test_msg, *tc->exp_real_uid, in run()
75 tst_res(TPASS, "%s works as expected", tc->test_msg); in run()
Dsetresuid03.c31 char *test_msg; member
62 tc->exp_errno, "%s", tc->test_msg); in run()
67 tst_check_resuid(tc->test_msg, *tc->exp_real_uid, *tc->exp_eff_uid, in run()
/third_party/ltp/testcases/kernel/syscalls/setreuid/
Dsetreuid02.c29 const char *test_msg; member
71 tc->test_msg); in run()
76 if (tst_check_resuid(tc->test_msg, *tc->exp_real_uid, *tc->exp_eff_uid, in run()
78 tst_res(TPASS, "%s works as expected", tc->test_msg); in run()
Dsetreuid03.c30 const char *test_msg; member
86 "%s", tc->test_msg); in run()
89 tc->test_msg); in run()
95 tst_check_resuid(tc->test_msg, *tc->exp_real_uid, *tc->exp_eff_uid, in run()
Dsetreuid05.c32 const char *test_msg; member
89 "%s", tc->test_msg); in run_child()
92 tc->test_msg); in run_child()
98 tst_check_resuid(tc->test_msg, *tc->exp_real_uid, *tc->exp_eff_uid, in run_child()
Dsetreuid04.c50 char *test_msg; member
100 test_data[i].test_msg); in main()
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
Drepeated_field_test.rb580 def fill_test_msg(test_msg) argument
581 test_msg.repeated_int32 += [-10, -11]
582 test_msg.repeated_int64 += [-1_000_000, -1_000_001]
583 test_msg.repeated_uint32 += [10, 11]
584 test_msg.repeated_uint64 += [1_000_000, 1_000_001]
585 test_msg.repeated_bool += [true, false]
586 test_msg.repeated_float += [-1.01, -1.02]
587 test_msg.repeated_double += [-1.0000000000001, -1.0000000000002]
588 test_msg.repeated_string += %w(foo bar)
589 test_msg.repeated_bytes += ["bar".encode!('ASCII-8BIT'), "foo".encode!('ASCII-8BIT')]
[all …]
/third_party/protobuf/ruby/tests/
Drepeated_field_test.rb602 def fill_test_msg(test_msg) argument
603 test_msg.repeated_int32 += [-10, -11]
604 test_msg.repeated_int64 += [-1_000_000, -1_000_001]
605 test_msg.repeated_uint32 += [10, 11]
606 test_msg.repeated_uint64 += [1_000_000, 1_000_001]
607 test_msg.repeated_bool += [true, false]
608 test_msg.repeated_float += [-1.01, -1.02]
609 test_msg.repeated_double += [-1.0000000000001, -1.0000000000002]
610 test_msg.repeated_string += %w(foo bar)
611 test_msg.repeated_bytes += ["bar".encode!('ASCII-8BIT'), "foo".encode!('ASCII-8BIT')]
[all …]
/third_party/ltp/testcases/kernel/syscalls/symlink/
Dsymlink01.c501 char test_msg[BUFMAX]; variable
656 sprintf(test_msg, in creat_symlink()
683 sprintf(test_msg, in creat_object()
696 sprintf(test_msg, in creat_object()
738 sprintf(test_msg, in ck_symlink()
744 sprintf(test_msg, in ck_symlink()
767 sprintf(test_msg, in ck_both()
773 sprintf(test_msg, in ck_both()
779 sprintf(test_msg, in ck_both()
803 sprintf(test_msg, in creat_path_max()
[all …]
/third_party/ltp/testcases/kernel/syscalls/setregid/
Dsetregid04.c28 const char *test_msg; member
76 test_data[i].test_msg); in run()
Dsetregid02.c38 char *test_msg; member
91 gid_verify(*tc->exp_real_usr, *tc->exp_eff_usr, tc->test_msg); in run()
Dsetregid03.c28 char *test_msg; member
121 gid_verify(*tc->exp_real_usr, *tc->exp_eff_usr, tc->test_msg); in run()
/third_party/grpc/src/php/tests/interop/
Dinterop_client.php615 $test_msg = "\t\ntest with whitespace\r\nand Unicode BMP ☺ and non-BMP ��\t\n";
619 $echo_status->setMessage($test_msg);
632 $status->details === $test_msg,
/third_party/grpc/test/cpp/interop/
Dinterop_client.cc847 const std::string test_msg = "This is a test message"; in DoStatusWithMessage() local
855 requested_status->set_message(test_msg); in DoStatusWithMessage()
861 GPR_ASSERT(s.error_message() == test_msg); in DoStatusWithMessage()
871 requested_status->set_message(test_msg); in DoStatusWithMessage()
882 GPR_ASSERT(s.error_message() == test_msg); in DoStatusWithMessage()