Searched refs:fail (Results 26 - 50 of 1252) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/ftrace/test.d/event/
H A Dtoplevel-enable.tc11 fail() { #msg
24 fail "none of events are recorded"
37 fail "none of events are recorded"
48 fail "any of events should not be recorded"
H A Devent-enable.tc12 fail() { #msg
23 fail "sched_switch events are not recorded"
34 fail "sched_switch events are not recorded"
45 fail "sched_switch events should not be recorded"
H A Dsubsystem-enable.tc12 fail() { #msg
23 fail "at least fork, exec and exit events should be recorded"
34 fail "at least fork, exec and exit events should be recorded"
45 fail "any of scheduler events should not be recorded"
H A Devent-pid.tc14 fail() { #msg
28 fail "sched_switch events are not recorded"
43 fail "sched_switch events from other task are recorded"
56 fail "sched_switch events from other task are not recorded"
/linux-master/tools/testing/selftests/ftrace/test.d/ftrace/
H A Dfunc_traceonoff_triggers.tc16 fail() { # mesg
35 fail "Found junk in trace"
48 fail "Nothing found in trace"
77 fail "Did not find traceoff trigger"
85 fail "Tracing is not stopped"
90 fail "Tracing is not off"
98 fail "Tracing file is still changing"
105 fail "Tracing is still happeing"
112 fail "traceoff trigger still exists"
117 fail "Tracin
[all...]
/linux-master/tools/testing/selftests/ftrace/test.d/trigger/inter-event/
H A Dtrigger-action-hist-xfail.tc3 # description: event trigger - test inter-event histogram trigger expected fail actions
6 fail() { #msg
H A Dtrigger-field-variable-support.tc6 fail() { #msg
20 fail "Failed to create inter-event histogram"
24 fail "Failed to create histogram with field variable"
30 fail "Failed to remove histogram with field variable"
H A Dtrigger-multi-actions-accept.tc6 fail() { #msg
H A Dtrigger-inter-event-combined-hist.tc6 fail() { #msg
15 fail "Failed to create waking_latency synthetic event"
34 fail "Failed to create combined histogram"
/linux-master/tools/testing/selftests/ftrace/test.d/trigger/
H A Dtrigger-multihist.tc7 fail() { #msg
18 fail "hist trigger on sched_process_fork did not work"
20 fail "hist trigger on sched_process_fork did not work"
23 fail "string key on sched_process_fork did not work"
32 fail "named event on sched_process_fork did not work"
39 fail "named event on sched_process_fork did not work"
42 test $diffs -eq 0 || fail "Same name histograms are not same"
H A Dtrigger-hist-mod.tc7 fail() { #msg
18 fail "execname modifier on sched_process_fork did not work"
29 fail "hex modifier on sched_process_fork did not work"
38 fail "syscall modifier on raw_syscalls/sys_exit did not work"
48 fail "log2 modifier on kmem/kmalloc did not work"
H A Dtrigger-stacktrace.tc6 fail() { #msg
23 fail "stacktrace trigger on sched_process_fork did not work"
H A Dtrigger-hist.tc7 fail() { #msg
17 fail "hist trigger on sched_process_fork did not work"
19 fail "hist trigger on sched_process_fork did not work"
28 fail "compound keys on sched_process_fork did not work"
38 fail "string key on sched_process_fork did not work"
47 fail "sym modifier on kmalloc call_site did not work"
56 fail "sym-offset modifier on kmalloc call_site did not work"
74 fail "sort param on sched_process_fork did not work"
H A Dtrigger-hist-expressions.tc7 fail() { #msg
26 fail "Failed hist trigger expression evaluation: Expression: $2 Expected: $3, Actual: $actual"
H A Dtrigger-eventonoff.tc7 fail() { #msg
23 fail "enable_event trigger on sched_process_fork did not work"
33 fail "disable_event trigger on sched_process_fork did not work"
H A Dtrigger-traceonoff.tc6 fail() { #msg
16 fail "traceoff trigger on sched_process_fork did not work"
26 fail "traceoff trigger on sched_process_fork did not work"
/linux-master/tools/testing/selftests/net/
H A Dbpf_offload.py85 def fail(cond, msg): function
99 def cmd(cmd, shell=True, include_stderr=False, background=False, fail=True):
112 return cmd_result(proc, include_stderr=include_stderr, fail=fail)
114 def cmd_result(proc, include_stderr=False, fail=False):
131 if proc.returncode != 0 and fail:
146 def tool(name, args, flags, JSON=True, ns="", fail=True, include_stderr=False):
158 fail=fail, include_stderr=True)
161 fail
834 fail=False) variable
1156 fail=False) variable
1168 fail=False) variable
1178 fail=False) variable
1288 fail=False) variable
[all...]
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dvrf_socket_lookup.c76 goto fail;
79 fail:
96 goto fail;
100 fail:
148 SYS(fail, "ip netns add " NS0);
149 SYS(fail, "ip netns add " NS1);
152 SYS(fail, "ip link add veth01 netns " NS0 " type veth peer name veth10"
154 SYS(fail, "ip -net " NS0 " addr add " IP4_ADDR_VETH01 "/24 dev veth01");
155 SYS(fail, "ip -net " NS0 " link set dev veth01 up");
156 SYS(fail, "i
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dwith_addr.sh16 fail() { function
22 ip -6 addr add "${V6_INNER}" dev lo || fail 'failed to setup v6 address'
23 ip -4 addr add "${V4_INNER}" dev lo || fail 'failed to setup v4 address'
27 || fail 'failed to add sit'
29 || fail 'failed to bring sit device up'
31 || fail 'failed to setup v6 SIT address'
33 || fail 'failed to setup v4 SIT address'
36 sleep 2 # avoid race causing bind to fail
/linux-master/tools/testing/selftests/powerpc/signal/
H A Dsignal_tm.c26 static sig_atomic_t fail; variable
31 fail = 2;
38 fail = 1;
63 * If anything bad happens in ASM and we fail to set ret
89 i, fail, rc, ret);
92 while(!signaled && !fail)
96 i, fail, rc, ret);
97 FAIL_IF(fail); /* For the line number */
H A Dsignal.c26 static sig_atomic_t fail; variable
33 fail = 1;
68 while (!signaled && !fail)
74 /* Otherwise we'll loop too fast and fork() will eventually fail */
88 i, fail, rc);
91 while (!signaled && !fail)
95 i, fail, rc);
/linux-master/security/apparmor/
H A Dcrypto.c45 goto fail;
48 goto fail;
51 goto fail;
55 fail:
82 goto fail;
85 goto fail;
88 goto fail;
91 goto fail;
95 fail:
/linux-master/tools/testing/selftests/bpf/progs/
H A Dload_bytes_relative.c32 goto fail;
36 goto fail;
40 goto fail;
44 fail:
/linux-master/tools/testing/selftests/gpio/
H A Dgpio-sim.sh9 fail() { function
35 fail "Unable to remove the hog"
39 fail "Unable to remove the line"
46 rmdir $CONFIGFS_DIR/$CHIP || fail "Unable to remove the chip"
73 echo $LABEL > $CONFIGFS_DIR/$CHIP/$BANK/label || fail "Unable to set the chip label"
82 fail "Unable to set the number of lines"
93 echo $NAME > $LINE_DIR/name || fail "Unable to set the line name"
99 echo 1 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to enable the chip"
105 echo 0 > $CONFIGFS_DIR/$CHIP/live || fail "Unable to disable the chip"
113 fail "unabl
[all...]
/linux-master/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
H A Dproto.c28 goto fail;
34 goto fail;
37 goto fail;
41 goto fail;
49 goto fail;
53 fail:

Completed in 418 milliseconds

1234567891011>>