Searched refs:FAIL (Results 1 - 25 of 382) sorted by relevance

1234567891011>>

/external/python/cpython2/Lib/test/
H A Dre_tests.py7 [SUCCEED, FAIL, SYNTAX_ERROR] = range(3)
43 # 2: the expected result (SUCCEED, FAIL, SYNTAX_ERROR)
83 (r'[^a\0]', '\0', FAIL),
93 (r'\x00ffffffffffffff', '\377', FAIL, 'found', chr(255)),
94 (r'\x00f', '\017', FAIL, 'found', chr(15)),
95 (r'\x00fe', '\376', FAIL, 'found', chr(254)),
105 ('a.b', 'a\nb', FAIL),
106 ('a.*b', 'acc\nccb', FAIL),
107 ('a.{4,5}b', 'acc\nccb', FAIL),
117 ('abc', 'xbc', FAIL),
[all...]
/external/python/cpython3/Lib/test/
H A Dre_tests.py7 [SUCCEED, FAIL, SYNTAX_ERROR] = range(3)
43 # 2: the expected result (SUCCEED, FAIL, SYNTAX_ERROR)
83 (r'[^a\0]', '\0', FAIL),
93 (r'\x00ffffffffffffff', '\377', FAIL, 'found', chr(255)),
94 (r'\x00f', '\017', FAIL, 'found', chr(15)),
95 (r'\x00fe', '\376', FAIL, 'found', chr(254)),
105 ('a.b', 'a\nb', FAIL),
106 ('a.*b', 'acc\nccb', FAIL),
107 ('a.{4,5}b', 'acc\nccb', FAIL),
117 ('abc', 'xbc', FAIL),
[all...]
/external/vogar/src/vogar/
H A DResultValue.java25 FAIL, enum constant in enum:ResultValue
/external/valgrind/memcheck/tests/solaris/
H A Dscalar_obsolete.c12 SY(SYS_open, x0, x0); FAIL;
19 SY(SYS_open, x0, x0 | O_CREAT, x0); FAIL;
34 SY(SYS_link, x0, x0); FAIL;
38 SY(SYS_unlink, x0); FAIL;
45 SY(SYS_chmod, x0, x0); FAIL;
49 SY(SYS_chown, x0, x0, x0); FAIL;
53 SY(SYS_stat, x0, x0); FAIL;
57 SY(SYS_fstat, x0, x0); FAIL;
61 SY(SYS_access, x0, x0); FAIL;
65 SY(SYS_rmdir, x0); FAIL;
[all...]
H A Dscalar_frealpathat.c13 SY(SYS_frealpathat, x0 - 1, x0 + 1, x0 + 2, x0 + 3); FAIL;
H A Dscalar_getrandom.c13 SY(SYS_getrandom, x0 + 1, x0 + 1, x0); FAIL;
H A Dscalar_lwp_kill.c16 SY(SYS_lwp_kill, x0 - 1, x0); FAIL;
H A Dscalar_uuidsys.c13 SY(SYS_uuidsys, x0 + 1); FAIL;
/external/valgrind/memcheck/tests/x86-linux/
H A Dscalar.c39 //SY(__NR_restart_syscall); // (Not yet handled by Valgrind) FAIL;
56 SY(__NR_write, x0, x0, x0+1); FAIL;
60 SY(__NR_open, x0, x0); FAIL;
66 SY(__NR_open, "scalar.c", O_CREAT|O_EXCL, x0); FAIL;
70 SY(__NR_close, x0-1); FAIL;
74 SY(__NR_waitpid, x0, x0+1, x0); FAIL;
78 SY(__NR_creat, x0, x0); FAIL;
82 SY(__NR_link, x0, x0); FAIL;
86 SY(__NR_unlink, x0); FAIL;
90 SY(__NR_execve, x0 + 1, x0 + 1, x0); FAIL;
[all...]
/external/dtc/tests/
H A Ddtc-fatal.sh9 FAIL "dtc killed by signal (ret=$ret)"
11 FAIL "dtc returned incorrect status $ret instead of 1"
H A Dreferences.c38 FAIL("fdt_getprop(%d, \"ref\"): %s", node, fdt_strerror(len));
40 FAIL("'ref' in node at %d has wrong size (%d instead of %zd)",
44 FAIL("'ref' in node at %d has value 0x%x instead of 0x%x",
49 FAIL("fdt_getprop(%d, \"lref\"): %s", node, fdt_strerror(len));
51 FAIL("'lref' in node at %d has wrong size (%d instead of %zd)",
55 FAIL("'lref' in node at %d has value 0x%x instead of 0x%x",
67 FAIL("fdt_getprop(0, \"rref\"): %s", fdt_strerror(len));
69 FAIL("'rref' in root node has wrong size (%d instead of %zd)",
73 FAIL("'rref' in root node has value 0x%x instead of 0x0", ref);
87 FAIL("fdt_path_offse
[all...]
H A Dpath-references.c37 FAIL("fdt_getprop(%d, \"ref\"): %s", node, fdt_strerror(len));
39 FAIL("'ref' in node at %d has value \"%s\" instead of \"%s\"",
44 FAIL("fdt_getprop(%d, \"lref\"): %s", node, fdt_strerror(len));
46 FAIL("'lref' in node at %d has value \"%s\" instead of \"%s\"",
58 FAIL("fdt_getprop(0, \"rref\"): %s", fdt_strerror(len));
60 FAIL("'rref' in root node has value \"%s\" instead of \"/\"",
76 FAIL("fdt_path_offset(/node1): %s", fdt_strerror(n1));
79 FAIL("fdt_path_offset(/node2): %s", fdt_strerror(n2));
88 FAIL("fdt_getprop(0, \"multiref\"): %s", fdt_strerror(len));
90 FAIL("multire
[all...]
H A Dnop_property.c48 FAIL("Failed to nop \"prop-int\": %s", fdt_strerror(err));
52 FAIL("prop-int still present after nopping");
54 FAIL("Unexpected error on second getprop: %s", fdt_strerror(err));
61 FAIL("Failed to nop \"prop-str\": %s", fdt_strerror(err));
65 FAIL("prop-str still present after nopping");
67 FAIL("Unexpected error on second getprop: %s", fdt_strerror(err));
H A Droot_node.c42 FAIL("NULL retrieving root node");
45 FAIL("Wrong tag on root node");
48 FAIL("Wrong name for root node, \"%s\" instead of empty",
H A Ddtc-fails.sh20 FAIL "Produced no output"
24 FAIL "Incorrectly produced output"
H A Dtests.sh8 FAIL () { function
9 echo "FAIL" "$@"
17 FAIL "Killed by SIG$signame"
40 FAIL "Returned error code $ret"
60 FAIL "Returned error code $ret"
H A Dnop_node.c43 FAIL("Couldn't find \"/subnode1\": %s",
49 FAIL("Couldn't find \"/subnode2\": %s",
55 FAIL("Couldn't find \"/subnode@2/subsubnode\": %s",
61 FAIL("fdt_nop_node(subnode1): %s", fdt_strerror(err));
65 FAIL("fdt_path_offset(subnode1) returned \"%s\" instead of \"%s\"",
71 FAIL("Couldn't find \"/subnode2\": %s",
77 FAIL("Couldn't find \"/subnode@2/subsubnode\": %s",
83 FAIL("fdt_nop_node(subnode2): %s", fdt_strerror(err));
87 FAIL("fdt_path_offset(subnode1) returned \"%s\" instead of \"%s\"",
93 FAIL("fdt_path_offse
[all...]
H A Ddel_property.c52 FAIL("Failed to delete \"prop-int\": %s", fdt_strerror(err));
56 FAIL("prop-int still present after deletion");
58 FAIL("Unexpected error on second getprop: %s",
66 FAIL("Failed to delete \"prop-str\": %s", fdt_strerror(err));
70 FAIL("prop-str still present after deletion");
72 FAIL("Unexpected error on second getprop: %s",
79 FAIL("fdt_pack(): %s\n", fdt_strerror(err));
87 FAIL("Tree failed to shrink after deletions");
H A Dset_name.c43 FAIL("Couldn't find %s", path);
49 FAIL("fdt_get_name(%d): %s", offset, fdt_strerror(len));
52 FAIL("fdt_get_name(%s) returned \"%s\" instead of \"%s\"",
56 FAIL("fdt_get_name(%s) returned length %d instead of %zd",
61 FAIL("fdt_set_name(%d, \"%s\"): %s", offset, newname,
66 FAIL("fdt_get_name(%d): %s", offset, fdt_strerror(len));
69 FAIL("fdt_get_name(%s) returned \"%s\" instead of \"%s\"",
73 FAIL("fdt_get_name(%s) returned length %d instead of %zd",
/external/valgrind/memcheck/tests/arm64-linux/
H A Dscalar.c38 //SY(__NR_restart_syscall); // (Not yet handled by Valgrind) FAIL;
55 SY(__NR_write, x0, x0, x0+1); FAIL;
59 //SY(__NR_open, x0, x0); FAIL;
65 //SY(__NR_open, "scalar.c", O_CREAT|O_EXCL, x0); FAIL;
69 SY(__NR_close, x0-1); FAIL;
73 //SY(__NR_waitpid, x0, x0+1, x0); FAIL;
77 //SY(__NR_creat, x0, x0); FAIL;
81 //SY(__NR_link, x0, x0); FAIL;
85 //SY(__NR_unlink, x0); FAIL;
91 SY(__NR_execve, x0, x0, x0); FAIL;
[all...]
/external/valgrind/memcheck/tests/darwin/
H A Dscalar.c34 SY(__NR_write, x0, x0, x0+1); FAIL;
35 //res = write(x0, x0, x0+1); FAIL;
38 SY(__NR_open, x0, x0); FAIL;
43 SY(__NR_open, "scalar.c", O_CREAT|O_EXCL, x0); FAIL;
46 SY(__NR_close, x0-1); FAIL;
49 SY(__NR_wait4, x0, x0+1, x0, x0+1); FAIL;
54 SY(__NR_link, x0, x0); FAIL;
57 SY(__NR_unlink, x0); FAIL;
62 SY(__NR_chdir, x0); FAIL;
65 SY(__NR_fchdir, x0-1); FAIL;
[all...]
/external/valgrind/memcheck/tests/x86-solaris/
H A Dscalar_obsolete.c15 SY(SYS_open64, x0, x0); FAIL;
22 SY(SYS_open64, x0, x0 | O_CREAT, x0); FAIL;
33 SY(SYS_stat64, x0, x0); FAIL;
37 SY(SYS_lstat64, x0, x0); FAIL;
41 SY(SYS_fstat64, x0, x0); FAIL;
/external/python/cpython2/Modules/
H A Dbinascii.c74 #define FAIL 0x7D macro
78 /* 0*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
80 /* 1*/ FAIL, FAI
[all...]
/external/python/cpython3/Modules/
H A Dbinascii.c75 #define FAIL 0x7D macro
79 /* 0*/ FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL, FAIL,
81 /* 1*/ FAIL, FAI
[all...]
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_filter_unittest_.cc54 FAIL() << "Expected failure.";
69 FAIL() << "Expected failure.";
73 FAIL() << "Expected failure.";
79 FAIL() << "Expected failure.";
89 FAIL() << "Expected failure.";
107 FAIL() << "Expected failure.";
111 FAIL() << "Expected failure.";
117 FAIL() << "Expected failure.";

Completed in 1456 milliseconds

1234567891011>>