/openbmc/openbmc-test-automation/lib/ |
H A D | cmd.tcl | 8 proc cmd_fnc { cmd_buf { quiet {} } { test_mode {} } { print_output {} }\ 49 set_var_default test_mode 0 55 qpissuing $cmd_buf $test_mode 57 if { $test_mode } { return [list 0 ""] } 103 set_var_default test_mode [get_stack_var test_mode 0 2] 116 set args [lreplace $args 2 2 $test_mode]
|
H A D | bmc_ssh_utils.py | 21 test_mode=None, argument 90 test_mode, 102 test_mode=None, argument 163 test_mode, 175 test_mode=None, argument 234 test_mode, 238 def device_write(cmd_buf, print_out=0, quiet=None, test_mode=None): argument 298 test_mode=test_mode,
|
H A D | gen_robot_keyword.py | 11 def run_key(keyword_buf, quiet=None, test_mode=None, ignore=0): argument 43 test_mode = int(gp.get_var_value(test_mode, 0)) 54 gp.pissuing(keyword_buf, test_mode) 56 if test_mode: 87 return run_key(keyword_buf, test_mode=0, quiet=quiet, ignore=ignore)
|
H A D | gen_cmd.py | 32 test_mode=None, argument 61 test_mode = int(gm.global_default(test_mode, 0)) 64 gp.print_vars(cmd_buf, quiet, test_mode, debug) 71 gp.pissuing(cmd_buf, test_mode) 73 if test_mode: 155 test_mode=0, 282 test_mode=0, argument 354 gp.qprint_issuing(command_string, test_mode) 355 if test_mode: 473 test_mode = int(gp.get_stack_var("test_mode", 0)) [all …]
|
H A D | tools.exp | 198 { test_mode {} } { show_err {} } { ignore_err {} } {trim_cr_lf 1}} { 225 set_var_default test_mode 0 233 qprintn ; qprint_issuing ${command_string} ${test_mode} 235 if { $test_mode } {
|
H A D | gen_robot_ssh.py | 161 test_mode=None, argument 204 test_mode = int(gp.get_var_value(test_mode, 0)) 207 gp.pissuing(cmd_buf, test_mode) 208 gp.lpissuing(cmd_buf, test_mode) 210 if test_mode:
|
H A D | gen_arg.py | 181 __builtin__.test_mode = 0 194 __builtin__.test_mode = arg_obj.test_mode 235 __builtin__.test_mode = var_value
|
H A D | gen_call_robot.py | 415 test_mode=0, argument 513 gp.qpissuing(robot_cmd_buf, test_mode) 514 if test_mode:
|
/openbmc/linux/tools/testing/selftests/ftrace/test.d/preemptirq/ |
H A D | irqsoff_tracer.tc | 36 modprobe $MOD test_mode=preempt delay=500000 || fail 38 modprobe $MOD test_mode=preempt delay=500000 || fail 40 modprobe $MOD test_mode=preempt delay=500000 || fail 59 modprobe $MOD test_mode=irq delay=500000 || fail 61 modprobe $MOD test_mode=irq delay=500000 || fail 63 modprobe $MOD test_mode=irq delay=500000 || fail
|
/openbmc/linux/kernel/trace/ |
H A D | preemptirq_delay_test.c | 22 static char test_mode[12] = "irq"; variable 27 module_param_string(test_mode, test_mode, 12, 0444); 31 MODULE_PARM_DESC(test_mode, "Mode of the test such as preempt, irq, or alternate (default irq)"); 70 if (!strcmp(test_mode, "irq")) in execute_preemptirqtest() 72 else if (!strcmp(test_mode, "preempt")) in execute_preemptirqtest() 74 else if (!strcmp(test_mode, "alternate")) { in execute_preemptirqtest() 154 snprintf(task_name, sizeof(task_name), "%s_test", test_mode); in preemptirq_run_test()
|
/openbmc/u-boot/drivers/i2c/ |
H A D | sandbox_i2c.c | 17 bool test_mode; member 40 void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode) in sandbox_i2c_set_test_mode() argument 44 priv->test_mode = test_mode; in sandbox_i2c_set_test_mode() 58 if (priv->test_mode && msg->addr == SANDBOX_I2C_TEST_ADDR) in sandbox_i2c_xfer() 69 if (priv->test_mode) { in sandbox_i2c_xfer()
|
/openbmc/linux/tools/testing/selftests/clone3/ |
H A D | clone3.c | 23 enum test_mode { enum 32 static int call_clone3(uint64_t flags, size_t size, enum test_mode test_mode) in call_clone3() argument 54 switch (test_mode) { in call_clone3() 107 enum test_mode test_mode) in test_clone3() argument 114 ret = call_clone3(flags, size, test_mode); in test_clone3()
|
/openbmc/openbmc-test-automation/extended/ |
H A D | run_keyword.py | 45 def my_run_keywords(lib_file_path, keyword_string, quiet=0, test_mode=0): argument 113 gp.print_issuing(cmd_buf, test_mode) 114 if test_mode: 136 test_mode = int(BuiltIn().get_variable_value("${test_mode}")) 138 my_run_keywords(lib_file_path, keyword_string, quiet, test_mode)
|
H A D | run_keyword.robot | 13 # test_mode This means that this program should go through all the 41 @{parm_list} keyword_string lib_file_path test_mode quiet 47 ${test_mode} 0 variable
|
H A D | obmc_boot_test_resource.robot | 23 ... call_post_stack_plug do_pre_boot_plug_in_setup boot_table_path test_mode quiet debug 77 ${test_mode} 0 variable
|
/openbmc/u-boot/drivers/misc/ |
H A D | i2c_eeprom_emul.c | 22 enum sandbox_i2c_eeprom_test_mode test_mode; member 37 plat->test_mode = mode; in sandbox_i2c_eeprom_set_test_mode() 73 if (plat->test_mode == SIE_TEST_MODE_SINGLE_BYTE) in sandbox_i2c_eeprom_xfer() 87 if (plat->test_mode == SIE_TEST_MODE_SINGLE_BYTE) in sandbox_i2c_eeprom_xfer() 121 plat->test_mode = SIE_TEST_MODE_NONE; in sandbox_i2c_eeprom_ofdata_to_platdata()
|
/openbmc/linux/tools/testing/vsock/ |
H A D | util.h | 9 enum test_mode { enum 17 enum test_mode mode;
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | xskxceiver.h | 62 enum test_mode { enum 156 enum test_mode mode; 190 enum test_mode mode;
|
/openbmc/linux/drivers/usb/host/ |
H A D | xhci-hub.c | 710 u16 test_mode, u16 wIndex) in xhci_port_set_test_mode() argument 718 temp |= test_mode << PORT_TEST_MODE_SHIFT; in xhci_port_set_test_mode() 720 xhci->test_mode = test_mode; in xhci_port_set_test_mode() 721 if (test_mode == USB_TEST_FORCE_ENABLE) in xhci_port_set_test_mode() 726 u16 test_mode, u16 wIndex, unsigned long *flags) in xhci_enter_test_mode() argument 763 test_mode, wIndex + 1); in xhci_enter_test_mode() 764 xhci_port_set_test_mode(xhci, test_mode, wIndex); in xhci_enter_test_mode() 772 if (!xhci->test_mode) { in xhci_exit_test_mode() 776 if (xhci->test_mode == USB_TEST_FORCE_ENABLE && in xhci_exit_test_mode() 783 xhci->test_mode = 0; in xhci_exit_test_mode() [all …]
|
/openbmc/linux/drivers/usb/gadget/udc/ |
H A D | mv_udc.h | 201 unsigned int test_mode; member 244 unsigned int test_mode; member
|
/openbmc/openbmc-test-automation/bin/plug_ins/Auto_reboot/ |
H A D | cp_cleanup | 103 test_mode,
|
H A D | cp_master | 103 test_mode,
|
H A D | cp_setup | 103 test_mode,
|
H A D | cp_pre_boot | 103 test_mode,
|
/openbmc/u-boot/arch/sandbox/include/asm/ |
H A D | test.h | 49 void sandbox_i2c_set_test_mode(struct udevice *bus, bool test_mode);
|