Home
last modified time | relevance | path

Searched refs:failed (Results 1 - 25 of 482) sorted by relevance

12345678910>>...20

/third_party/python/Python/
H A DPython-ast.c3624 if (!result) goto failed; in ast2obj_mod()
3626 if (!value) goto failed; in ast2obj_mod()
3628 goto failed; in ast2obj_mod()
3632 if (!value) goto failed; in ast2obj_mod()
3634 goto failed; in ast2obj_mod()
3640 if (!result) goto failed; in ast2obj_mod()
3643 if (!value) goto failed; in ast2obj_mod()
3645 goto failed; in ast2obj_mod()
3651 if (!result) goto failed; in ast2obj_mod()
3653 if (!value) goto failed; in ast2obj_mod()
[all...]
/third_party/cJSON/tests/
H A Djson_patch_tests.c188 cJSON_bool failed = false; in cjson_utils_should_pass_json_patch_test_tests() local
191 failed |= !test_apply_patch(test); in cjson_utils_should_pass_json_patch_test_tests()
192 failed |= !test_generate_test(test); in cjson_utils_should_pass_json_patch_test_tests()
197 TEST_ASSERT_FALSE_MESSAGE(failed, "Some tests failed."); in cjson_utils_should_pass_json_patch_test_tests()
205 cJSON_bool failed = false; in cjson_utils_should_pass_json_patch_test_spec_tests() local
208 failed |= !test_apply_patch(test); in cjson_utils_should_pass_json_patch_test_spec_tests()
209 failed |= !test_generate_test(test); in cjson_utils_should_pass_json_patch_test_spec_tests()
214 TEST_ASSERT_FALSE_MESSAGE(failed, "Some tests failed in cjson_utils_should_pass_json_patch_test_spec_tests()
222 cJSON_bool failed = false; cjson_utils_should_pass_json_patch_test_cjson_utils_tests() local
[all...]
/third_party/ltp/testcases/kernel/io/direct_io/
H A Ddiotest4.c104 tst_resm(TFAIL, "lseek before read failed: %s", in runtest_f()
119 tst_resm(TFAIL, "lseek before write failed: %s", in runtest_f()
144 tst_resm(TFAIL, "lseek before read failed: %s", in runtest_s()
149 tst_resm(TFAIL, "read failed for %s. returns %d: %s", in runtest_s()
155 tst_resm(TFAIL, "lseek before write failed: %s", in runtest_s()
160 tst_resm(TFAIL, "write failed for %s. returns %d: %s", in runtest_s()
174 static void testcheck_end(int ret, int *failed, int *fail_count, char *msg) in testcheck_end() argument
177 *failed = TRUE; in testcheck_end()
197 int failed = 0; in main() local
221 tst_brkm(TBROK, cleanup, "open failed fo in main()
[all...]
H A Ddiotest3.c101 tst_resm(TFAIL | TERRNO, "valloc for buf1 failed"); in runtest()
105 tst_resm(TFAIL | TERRNO, "valloc for buf2 failed"); in runtest()
113 tst_resm(TFAIL | TERRNO, "lseek (fd_w, ..) failed"); in runtest()
117 tst_resm(TFAIL | TERRNO, "write failed"); in runtest()
123 tst_resm(TFAIL | TERRNO, "fsync failed"); in runtest()
128 tst_resm(TFAIL | TERRNO, "lseek(fd_r, ..) failed"); in runtest()
132 tst_resm(TFAIL | TERRNO, "read failed"); in runtest()
137 "comparsion failed; child=%d offset=%d", in runtest()
156 "open(%s, O_WRONLY|O_CREAT, ..) failed", in child_function()
162 "open(%s, O_DIRECT|O_RDONLY, ..) failed", in child_function()
234 int i, fail_count = 0, failed = 0, total = 0; main() local
[all...]
/third_party/openssl/test/
H A Dx509_check_cert_pkey_test.c21 * e: expected, "ok" for success, "failed" for what should fail.
46 goto failed; in test_x509_check_cert_pkey()
51 } else if (strcmp(e, "failed") == 0) { in test_x509_check_cert_pkey()
55 goto failed; in test_x509_check_cert_pkey()
60 goto failed; in test_x509_check_cert_pkey()
63 goto failed; in test_x509_check_cert_pkey()
69 goto failed; in test_x509_check_cert_pkey()
75 TEST_error("read PEM x509 failed"); in test_x509_check_cert_pkey()
76 goto failed; in test_x509_check_cert_pkey()
84 TEST_error("read PEM x509 req failed"); in test_x509_check_cert_pkey()
[all...]
H A Dpbelutest.c20 int i, failed = 0; in test_pbelu() local
26 failed = 1; in test_pbelu()
31 if (!failed) in test_pbelu()
36 failed = pbe_type < last_type in test_pbelu()
39 OBJ_nid2sn(pbe_nid), failed ? "ERROR" : "OK"); in test_pbelu()
/third_party/skia/third_party/externals/tint/src/val/
H A Dhlsl.cc40 result.failed = true; in HlslUsingDXC()
53 result.failed = true; in HlslUsingDXC()
86 result.failed = (res.error_code != 0); in HlslUsingDXC()
91 result.failed = true; in HlslUsingDXC()
109 result.failed = true; in HlslUsingFXC()
117 result.failed = true; in HlslUsingFXC()
126 result.failed = true; in HlslUsingFXC()
160 result.failed = true; in HlslUsingFXC()
169 result.failed = true; in HlslUsingFXC()
/third_party/musl/libc-test/src/functionalext/supplement/legacy/
H A Ddaemon.c21 int failed = -1; variable
59 EXPECT_EQ("daemon_0300", result, failed); in daemon_0300()
72 EXPECT_EQ("daemon_0400", result, failed); in daemon_0400()
74 EXPECT_EQ("daemon_0400", fd, failed); in daemon_0400()
88 EXPECT_EQ("daemon_0500", pid, failed); in daemon_0500()
102 EXPECT_EQ("daemon_0600", mode, failed); in daemon_0600()
/third_party/rust/crates/syn/tests/
H A Dtest_round_trip.rs62 let failed = AtomicUsize::new(0); in test_round_trip()
64 repo::for_each_rust_file(|path| test(path, &failed, abort_after)); in test_round_trip()
66 let failed = failed.load(Ordering::Relaxed); in test_round_trip()
67 if failed > 0 { in test_round_trip()
68 panic!("{} failures", failed); in test_round_trip()
72 fn test(path: &Path, failed: &AtomicUsize, abort_after: usize) { in test()
79 errorf!("=== {}: syn failed to parse\n{:?}\n", path.display(), msg); in test()
80 let prev_failed = failed.fetch_add(1, Ordering::Relaxed); in test()
99 "=== {}: ignore - librustc failed t in test()
[all...]
H A Dtest_precedence.rs71 let failed = AtomicUsize::new(0); in test_rustc_precedence()
82 "=== {}: {} passed | {} failed\n", in test_rustc_precedence()
90 errorf!("\nFAIL {} - syn failed to parse: {}\n", path.display(), msg); in test_rustc_precedence()
96 let prev_failed = failed.fetch_add(l_failed, Ordering::Relaxed); in test_rustc_precedence()
104 let failed = failed.load(Ordering::Relaxed); in test_rustc_precedence()
107 errorf!("{} passed | {} failed\n", passed, failed); in test_rustc_precedence()
109 if failed > 0 { in test_rustc_precedence()
110 panic!("{} failures", failed); in test_rustc_precedence()
116 let mut failed = 0; test_expressions() variables
[all...]
/third_party/rust/crates/env_logger/ci/src/
H A Dmain.rs9 panic!("default test execution failed"); in main()
17 panic!("default test execution failed"); in main()
21 let failed = permute::all(&features) in main()
32 if !failed.is_empty() { in main()
33 for failed in failed { in main()
34 eprintln!("FAIL: {:?}", failed); in main()
37 panic!("test execution failed"); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_open/
H A D25-2.c37 int i, failed = 0; in main() local
51 failed++; in main()
54 printf("mq_maxmsg %ld failed as expected\n", in main()
62 failed++; in main()
81 failed++; in main()
84 printf("mq_msgsize %ld failed as expected\n", in main()
92 failed++; in main()
101 if (failed > 0) { in main()
/third_party/pulseaudio/sonic/
H A Dwave.c24 int failed; member
36 if(file->failed) { in writeBytes()
42 file->failed = 1; in writeBytes()
91 if(file->failed) { in readBytes()
105 if(file->failed) { in readExactBytes()
111 file->failed = 1; in readExactBytes()
155 file->failed = 1; in expectString()
161 file->failed = 1; in expectString()
282 if(file->failed) { in openOutputWaveFile()
303 if(file->failed) { in closeWaveFile()
[all...]
/third_party/ltp/testcases/kernel/mce-test/hwpoison/
H A Drandom_offline80 echo "$i $?" >> unpoison-failed
81 echo "unpoisioning $i failed: $?"
99 failed=0
110 rm -f offlined unpoison-failed
123 #echo offlining $T failed $?
124 (( failed++ ))
146 if [ -f unpoison-failed ] ; then
147 ufailed=$(wc -l unpoison-failed | awk ' {print $1}')
149 echo "soft-poison: success $success failed $failed o
[all...]
/third_party/ltp/testcases/kernel/mce-test/tsrc/
H A Drandom_offline80 echo "$i $?" >> unpoison-failed
81 echo "unpoisioning $i failed: $?"
99 failed=0
110 rm -f offlined unpoison-failed
123 #echo offlining $T failed $?
124 (( failed++ ))
146 if [ -f unpoison-failed ] ; then
147 ufailed=$(wc -l unpoison-failed | awk ' {print $1}')
149 echo "soft-poison: success $success failed $failed o
[all...]
/third_party/libwebsockets/lib/core-net/client/
H A Dconnect4.c63 goto failed; in lws_client_connect_4_established()
95 goto failed; in lws_client_connect_4_established()
103 cce = "proxy write failed"; in lws_client_connect_4_established()
104 goto failed; in lws_client_connect_4_established()
126 goto failed; in lws_client_connect_4_established()
207 goto failed; in lws_client_connect_4_established()
250 goto failed; in lws_client_connect_4_established()
284 cce = "first service failed"; in lws_client_connect_4_established()
285 goto failed; in lws_client_connect_4_established()
323 cce = "first service failed"; in lws_client_connect_4_established()
[all...]
/third_party/libwebsockets/plugins/acme-client/
H A Dprotocol_lws_acme_client.c148 lwsl_wsi_warn(wsi, "add status failed"); in callback_chall_http01()
156 lwsl_wsi_warn(wsi, "add content_type failed"); in callback_chall_http01()
162 lwsl_wsi_warn(wsi, "add content_length failed"); in callback_chall_http01()
170 lwsl_wsi_warn(wsi, "add content_dispo failed"); in callback_chall_http01()
175 lwsl_wsi_warn(wsi, "finalize http header failed"); in callback_chall_http01()
187 lwsl_wsi_err(wsi, "_write content failed"); in callback_chall_http01()
228 lwsl_warn("%s: malloc %d failed\n", __func__, n); in jws_create_packet()
249 lwsl_notice("failed to export jwk\n"); in jws_create_packet()
267 lwsl_notice("%s: failed to encode protected\n", __func__); in jws_create_packet()
277 lwsl_notice("%s: failed t in jws_create_packet()
[all...]
/third_party/ffmpeg/libswscale/tests/
H A Dcolorspace.c97 int failed = 0; in main() local
119 if (failed) in main()
136 failed = 1; in main()
145 failed = 1; in main()
154 failed = 1; in main()
161 if (failed) in main()
/third_party/skia/third_party/externals/tint/tools/src/cmd/run-parallel/
H A Dmain.go79 failed bool
109 failed := false
114 failed = failed || result.failed
116 if failed {
/third_party/googletest/googletest/test/
H A Dgoogletest-test-part-test.cc74 EXPECT_FALSE(success.failed()); in TEST_F()
82 EXPECT_TRUE(nonfatal_failure.failed()); in TEST_F()
90 EXPECT_TRUE(fatal_failure.failed()); in TEST_F()
97 EXPECT_FALSE(skip.failed()); in TEST_F()
139 // Tests TestPartResult::failed().
141 EXPECT_FALSE(r1_.failed()); in TEST_F()
142 EXPECT_TRUE(r2_.failed()); in TEST_F()
143 EXPECT_TRUE(r3_.failed()); in TEST_F()
144 EXPECT_FALSE(r4_.failed()); in TEST_F()
147 // Tests TestPartResult::failed()
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fMultiviewTests.cpp298 bool failed = false; in iterate() local
308 failed = true; in iterate()
315 failed = true; in iterate()
318 if (failed) in iterate()
327 if (failed) in iterate()
332 log << TestLog::Message << "Test result: " << (failed ? "Failed!" : "Passed!") << TestLog::EndMessage; in iterate()
334 if (failed) in iterate()
/third_party/mbedtls/docs/architecture/psa-migration/
H A Doutcome-analysis.sh125 failed=''
128 failed="$failed $suite"
131 if [ -z "$failed" ]; then
134 printf "Suites with less coverage:%s\n" "$failed"
/third_party/ltp/lib/newlib_tests/shell/
H A Dtest_timeout.sh16 # expected failed
48 # - test_failed: The number of failed tests parsed from the summary
92 || $1 == "failed" \
102 failed=0
151 echo "FAILED (failed: $test_failed, expected $exp_failed)"
166 failed=$((failed + 1))
177 echo "Failed tests: $failed"
178 exit $failed
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dparse_number.h134 bool failed = false; in CheckRangeAndIfHexThenSignExtend() local
137 failed = ((value & overflow_mask) != overflow_mask) || in CheckRangeAndIfHexThenSignExtend()
144 failed = (value & overflow_mask) != 0; in CheckRangeAndIfHexThenSignExtend()
148 failed = (value_as_u64 & magnitude_mask) != value_as_u64; in CheckRangeAndIfHexThenSignExtend()
152 if (failed) { in CheckRangeAndIfHexThenSignExtend()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dparse_number.h134 bool failed = false; in CheckRangeAndIfHexThenSignExtend() local
137 failed = ((value & overflow_mask) != overflow_mask) || in CheckRangeAndIfHexThenSignExtend()
144 failed = (value & overflow_mask) != 0; in CheckRangeAndIfHexThenSignExtend()
148 failed = (value_as_u64 & magnitude_mask) != value_as_u64; in CheckRangeAndIfHexThenSignExtend()
152 if (failed) { in CheckRangeAndIfHexThenSignExtend()

Completed in 16 milliseconds

12345678910>>...20