Home
last modified time | relevance | path

Searched refs:fail (Results 1 – 25 of 5869) sorted by relevance

12345678910>>...235

/external/openssh/regress/
Dsftp-cmds.sh32 grep copy.dd >/dev/null 2>&1 || fail "lls failed"
36 grep copy.dd >/dev/null 2>&1 || fail "lls w/path failed"
40 || fail "ls failed"
45 || fail "shell failed"
50 || fail "pwd failed"
55 || fail "lpwd failed"
60 || fail "quit failed"
65 || fail "help failed"
71 || fail "get failed"
72 cmp $DATA ${COPY} || fail "corrupted copy after get"
[all …]
Dscp.sh33 $SCP $scpopts ${DATA} ${COPY} || fail "copy failed"
34 cmp ${DATA} ${COPY} || fail "corrupted copy"
38 $SCP $scpopts ${DATA} somehost:${COPY} || fail "copy failed"
39 cmp ${DATA} ${COPY} || fail "corrupted copy"
43 $SCP $scpopts somehost:${DATA} ${COPY} || fail "copy failed"
44 cmp ${DATA} ${COPY} || fail "corrupted copy"
49 $SCP $scpopts ${COPY} somehost:${DIR} || fail "copy failed"
50 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
55 $SCP $scpopts ${COPY} ${DIR} || fail "copy failed"
56 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
[all …]
/external/python/cpython2/Lib/test/
Dtest_types.py12 if None: self.fail('None is true instead of false')
13 if 0: self.fail('0 is true instead of false')
14 if 0L: self.fail('0L is true instead of false')
15 if 0.0: self.fail('0.0 is true instead of false')
16 if '': self.fail('\'\' is true instead of false')
17 if not 1: self.fail('1 is false instead of true')
18 if not 1L: self.fail('1L is false instead of true')
19 if not 1.0: self.fail('1.0 is false instead of true')
20 if not 'x': self.fail('\'x\' is false instead of true')
21 if not {'x': 1}: self.fail('{\'x\': 1} is false instead of true')
[all …]
/external/linux-kselftest/tools/testing/selftests/exec/
Dexecveat.c153 int fail = 0; in check_execveat_pathmax() local
196 fail += check_execveat(fd, "", AT_EMPTY_PATH); in check_execveat_pathmax()
200 fail++; in check_execveat_pathmax()
214 fail += check_execveat_invoked_rc(root_dfd, longpath + 1, 0, in check_execveat_pathmax()
217 fail += check_execveat(root_dfd, longpath + 1, 0); in check_execveat_pathmax()
219 return fail; in check_execveat_pathmax()
224 int fail = 0; in run_tests() local
262 fail += check_execveat(subdir_dfd, "../execveat", 0); in run_tests()
263 fail += check_execveat(dot_dfd, "execveat", 0); in run_tests()
264 fail += check_execveat(dot_dfd_path, "execveat", 0); in run_tests()
[all …]
/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_offload.py82 def fail(cond, msg): function
96 def cmd(cmd, shell=True, include_stderr=False, background=False, fail=True): argument
109 return cmd_result(proc, include_stderr=include_stderr, fail=fail)
111 def cmd_result(proc, include_stderr=False, fail=False): argument
128 if proc.returncode != 0 and fail:
143 def tool(name, args, flags, JSON=True, ns="", fail=True, include_stderr=False): argument
153 fail=fail, include_stderr=True)
156 fail=fail, include_stderr=False)
168 def bpftool(args, JSON=True, ns="", fail=True, include_stderr=False): argument
170 fail=fail, include_stderr=include_stderr)
[all …]
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/preemptirq/
Dirqsoff_tracer.tc7 fail() {
31 modprobe $MOD test_mode=preempt delay=500000 || fail
32 rmmod $MOD || fail
33 modprobe $MOD test_mode=preempt delay=500000 || fail
34 rmmod $MOD || fail
35 modprobe $MOD test_mode=preempt delay=500000 || fail
36 rmmod $MOD || fail
41 grep -q "tracer: preemptoff" trace || fail
44 egrep -q "5.....us : <stack trace>" trace || fail
47 egrep -q "latency: 5..... us" trace || fail
[all …]
/external/ltp/testcases/kernel/syscalls/fcntl/
Dfcntl21.c75 int fail; variable
116 fail = 1; in setup()
143 fail = 1; in do_child()
179 fail = 1; in compare_lock()
185 fail = 1; in compare_lock()
191 fail = 1; in compare_lock()
198 fail = 1; in compare_lock()
204 fail = 1; in compare_lock()
214 fail = 1; in unlock_file()
241 fail = 1; in parent_put()
[all …]
Dfcntl19.c81 int fail = 0; variable
118 fail = 1; in setup()
172 fail = 1; in compare_lock()
178 fail = 1; in compare_lock()
184 fail = 1; in compare_lock()
191 fail = 1; in compare_lock()
197 fail = 1; in compare_lock()
207 fail = 1; in unlock_file()
234 fail = 1; in parent_put()
242 fail = 1; in parent_get()
[all …]
Dfcntl20.c77 int fail = 0; variable
135 fail = 1; in do_child()
171 fail = 1; in compare_lock()
177 fail = 1; in compare_lock()
183 fail = 1; in compare_lock()
190 fail = 1; in compare_lock()
196 fail = 1; in compare_lock()
206 fail = 1; in unlock_file()
233 fail = 1; in parent_put()
241 fail = 1; in parent_get()
[all …]
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsFileSystemCloseTest.java30 import static org.junit.Assert.fail;
83 fail(); in testIsNotAvailableFromProvider()
101 fail(); in testOpenStreamsClosed()
108 fail(); in testOpenStreamsClosed()
133 fail(); in testOpenChannelsClosed()
139 fail(); in testOpenChannelsClosed()
145 fail(); in testOpenChannelsClosed()
161 fail(); in testOpenDirectoryStreamsClosed()
179 fail(); in testOpenWatchServicesClosed()
185 fail(); in testOpenWatchServicesClosed()
[all …]
/external/llvm-project/lldb/test/API/python_api/sbstructureddata/
DTestStructuredDataAPI.py33 self.fail("FAILED: " + error.GetCString())
43 self.fail("FAILED: could not find key_float in description output")
70 self.fail("An invalid object should have been returned")
74 self.fail("Wrong type returned: " + str(invalid_struct.GetType()))
81 self.fail("A valid object should have been returned")
85 self.fail("Wrong type returned: " + str(dict_struct.GetType()))
89 self.fail("Wrong no of elements returned: " +
96 self.fail("A valid object should have been returned")
100 self.fail("Wrong type returned: " + str(string_struct.GetType()))
105 self.fail("wrong output: " + output)
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/
DParentCancellationTest.kt19 testParentCancellation(expectUnhandled = false) { fail -> in <lambda>() method
21 CoroutineScope(coroutineContext + child).fail() in <lambda>()
27 testParentCancellation(expectParentActive = true, expectUnhandled = true) { fail -> in <lambda>() method
29 CoroutineScope(coroutineContext + child).fail() in <lambda>()
35 testParentCancellation { fail -> in <lambda>() method
37 CoroutineScope(coroutineContext + child).fail() in <lambda>()
43 testParentCancellation(runsInScopeContext = true) { fail -> in <lambda>() method
44 launch { fail() } in <lambda>()
50 testParentCancellation(runsInScopeContext = true) { fail -> in <lambda>() method
51 async { fail() } in <lambda>()
[all …]
/external/curl/tests/unit/
Dunit1653.c54 goto fail;
57 goto fail;
68 goto fail;
71 goto fail;
79 goto fail;
82 goto fail;
91 goto fail;
94 goto fail;
107 goto fail;
110 goto fail;
[all …]
/external/wpa_supplicant_8/src/common/
Ddpp_reconfig.c61 goto fail; in dpp_build_reconfig_announcement()
69 goto fail; in dpp_build_reconfig_announcement()
75 goto fail; in dpp_build_reconfig_announcement()
82 goto fail; in dpp_build_reconfig_announcement()
88 goto fail; in dpp_build_reconfig_announcement()
94 goto fail; in dpp_build_reconfig_announcement()
102 goto fail; in dpp_build_reconfig_announcement()
126 fail: in dpp_build_reconfig_announcement()
189 goto fail; in dpp_configurator_build_own_connector()
194 goto fail; in dpp_configurator_build_own_connector()
[all …]
Ddpp_crypto.c161 goto fail; in dpp_debug_print_point()
166 goto fail; in dpp_debug_print_point()
170 fail: in dpp_debug_print_point()
448 goto fail; in dpp_set_pubkey_point_group()
455 goto fail; in dpp_set_pubkey_point_group()
461 goto fail; in dpp_set_pubkey_point_group()
472 goto fail; in dpp_set_pubkey_point_group()
479 goto fail; in dpp_set_pubkey_point_group()
489 fail: in dpp_set_pubkey_point_group()
542 goto fail; in dpp_gen_keypair()
[all …]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DIntArrayListTest.java87 fail(); in testModificationWithIteration()
96 fail(); in testModificationWithIteration()
109 fail(); in testGet()
116 fail(); in testGet()
129 fail(); in testGetInt()
136 fail(); in testGetInt()
172 fail(); in testSet()
179 fail(); in testSet()
197 fail(); in testSetInt()
204 fail(); in testSetInt()
[all …]
DBooleanArrayListTest.java88 fail(); in testModificationWithIteration()
97 fail(); in testModificationWithIteration()
110 fail(); in testGet()
117 fail(); in testGet()
130 fail(); in testGetBoolean()
137 fail(); in testGetBoolean()
173 fail(); in testSet()
180 fail(); in testSet()
198 fail(); in testSetBoolean()
205 fail(); in testSetBoolean()
[all …]
DDoubleArrayListTest.java87 fail(); in testModificationWithIteration()
96 fail(); in testModificationWithIteration()
109 fail(); in testGet()
116 fail(); in testGet()
129 fail(); in testGetDouble()
136 fail(); in testGetDouble()
172 fail(); in testSet()
179 fail(); in testSet()
197 fail(); in testSetDouble()
204 fail(); in testSetDouble()
[all …]
DLongArrayListTest.java87 fail(); in testModificationWithIteration()
96 fail(); in testModificationWithIteration()
109 fail(); in testGet()
116 fail(); in testGet()
129 fail(); in testGetLong()
136 fail(); in testGetLong()
172 fail(); in testSet()
179 fail(); in testSet()
197 fail(); in testSetLong()
204 fail(); in testSetLong()
[all …]
DFloatArrayListTest.java87 fail(); in testModificationWithIteration()
96 fail(); in testModificationWithIteration()
109 fail(); in testGet()
116 fail(); in testGet()
129 fail(); in testGetFloat()
136 fail(); in testGetFloat()
172 fail(); in testSet()
179 fail(); in testSet()
197 fail(); in testSetFloat()
204 fail(); in testSetFloat()
[all …]
DProtobufArrayListTest.java73 fail(); in testModificationWithIteration()
82 fail(); in testModificationWithIteration()
91 fail(); in testModificationWithIteration()
122 fail(); in testRemove()
141 fail(); in testGet()
148 fail(); in testGet()
166 fail(); in testSet()
173 fail(); in testSet()
252 fail(); in assertImmutable()
259 fail(); in assertImmutable()
[all …]
/external/llvm-project/clang/test/Parser/
Dwarn-misleading-indentation.cpp264 goto fail
268 goto fail; in main()
270 goto fail; in main()
274 goto fail; in main()
276 goto fail; in main()
278 goto fail; in main()
280 goto fail; in main()
283 goto fail; in main()
288 goto fail; in main()
290 goto fail; in main()
[all …]
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/ftrace/
Dfunc_traceonoff_triggers.tc19 fail() { # mesg
38 fail "Found junk in trace"
51 fail "Nothing found in trace"
80 fail "Did not find traceoff trigger"
88 fail "Tracing is not stopped"
93 fail "Tracing is not off"
101 fail "Tracing file is still changing"
108 fail "Tracing is still happeing"
115 fail "traceoff trigger still exists"
120 fail "Tracing is started again"
[all …]
/external/ltp/testcases/kernel/syscalls/getpgid/
Dgetpgid01.c65 int ex_stat, fail = 0; in main() local
88 fail = 0; in main()
91 fail = 1; in main()
94 if (fail) in main()
102 fail = 0; in main()
111 fail = 1; in main()
113 if (fail) in main()
123 fail = 0; in main()
132 fail = 1; in main()
135 if (fail) { in main()
[all …]
/external/deqp/modules/gles31/functional/
Des31fInfoLogQueryShared.cpp55 result.fail("Return buffer was not INFO_LOG_LENGTH sized and null-terminated"); in verifyInfoLogQuery()
57 result.fail("Buffer end guard modified, query wrote over the end of the buffer."); in verifyInfoLogQuery()
70 result.fail("'length' was not written to"); in verifyInfoLogQuery()
72 result.fail("Either length was incorrect or result was not null-terminated"); in verifyInfoLogQuery()
74 result.fail("'length' characters + null terminator is larger than INFO_LOG_LENGTH"); in verifyInfoLogQuery()
76 result.fail("'length' is not consistent with INFO_LOG_LENGTH"); in verifyInfoLogQuery()
78 result.fail("Buffer end guard modified, query wrote over the end of the buffer."); in verifyInfoLogQuery()
80 result.fail("'length' and written string length do not match"); in verifyInfoLogQuery()
93 result.fail("'length' was not written to"); in verifyInfoLogQuery()
95 result.fail("Expected 'length' = 1"); in verifyInfoLogQuery()
[all …]

12345678910>>...235