/Zephyr-Core-3.7.0/tests/ztest/fail/ |
D | Kconfig | 11 bool "Add a failed assert in the teardown phase" 17 bool "Add a failed assume in the teardown phase" 23 bool "Add a call to ztest_test_pass() in the teardown phase" 33 default "ERROR: cannot fail in test phase 'teardown()', bailing" if ZTEST_FAIL_TEST_ASSERT_TEARDOWN 35 default "ERROR: cannot skip in test phase 'teardown()', bailing" if ZTEST_FAIL_TEST_ASSUME_TEARDOWN 37 default "ERROR: cannot pass in test phase 'teardown()', bailing" if ZTEST_FAIL_TEST_PASS_TEARDOWN
|
D | README.rst | 13 - ``ztest_test_fail()`` during either the ``after`` or ``teardown`` phase of the test suite 14 - ``ztest_test_skip()`` during either the ``after`` or ``teardown`` phase of the test suite 15 - ``ztest_test_pass()`` during either the ``after`` or ``teardown`` phase of the test suite
|
/Zephyr-Core-3.7.0/subsys/mgmt/mcumgr/grp/fs_mgmt/src/ |
D | fs_mgmt_hash_checksum_sha256.c | 50 goto teardown; in fs_mgmt_hash_checksum_sha256() 64 goto teardown; in fs_mgmt_hash_checksum_sha256() 67 goto teardown; in fs_mgmt_hash_checksum_sha256() 79 teardown: in fs_mgmt_hash_checksum_sha256()
|
/Zephyr-Core-3.7.0/tests/subsys/logging/log_blocking/src/ |
D | main.c | 235 static void teardown(void *data) in teardown() function 241 ZTEST_SUITE(log_blocking, NULL, setup, before, NULL, teardown);
|
/Zephyr-Core-3.7.0/tests/subsys/logging/log_stress/src/ |
D | main.c | 224 static void teardown(void *data) in teardown() function 231 ZTEST_SUITE(log_stress, NULL, setup, before, after, teardown);
|
/Zephyr-Core-3.7.0/subsys/bluetooth/controller/ll_sw/ |
D | ull_conn_iso_types.h | 31 uint16_t teardown:1; /* 1 if CIS teardown has been initiated */ member
|
D | ull_conn_iso.c | 565 if (cis->teardown) { in ull_conn_iso_cis_stop() 577 cis->teardown = 1; in ull_conn_iso_cis_stop() 1365 cis->teardown = 0U; in cis_disabled_cb() 1389 } else if (cis->teardown) { in cis_disabled_cb()
|
D | ull_peripheral_iso.c | 252 cis->teardown = 0; in ull_peripheral_iso_acquire()
|
D | ull_central_iso.c | 719 cis->teardown = 0; in ll_cis_create()
|
/Zephyr-Core-3.7.0/samples/net/sockets/socketpair/src/ |
D | main.c | 148 static void teardown(struct context *ctx, size_t n) in teardown() function 255 teardown(ctx, NUM_SOCKETPAIRS); in main()
|
/Zephyr-Core-3.7.0/subsys/testsuite/ztest/include/zephyr/ |
D | ztest_test.h | 204 const ztest_suite_teardown_t teardown; member 241 .teardown = (teardown_fn), \
|
/Zephyr-Core-3.7.0/include/zephyr/net/ |
D | wifi_mgmt.h | 585 } teardown; member
|
/Zephyr-Core-3.7.0/subsys/testsuite/ztest/src/ |
D | ztest.c | 896 if (suite->teardown != NULL) { in z_ztest_run_test_suite_ptr() 897 suite->teardown(data); in z_ztest_run_test_suite_ptr()
|
/Zephyr-Core-3.7.0/subsys/bluetooth/controller/hci/ |
D | hci_driver.c | 471 if (cis && !cis->teardown) { in encode_node()
|
/Zephyr-Core-3.7.0/subsys/net/l2/wifi/ |
D | wifi_shell.c | 1247 params.teardown.teardown_all = 1; in cmd_wifi_twt_teardown_all() 1987 SHELL_CMD_ARG(teardown, NULL, " Teardown a TWT flow:\n"
|
/Zephyr-Core-3.7.0/doc/develop/test/ |
D | ztest.rst | 29 * :c:type:`ztest_suite_teardown_t` - An optional teardown function which will run at the end of
|
/Zephyr-Core-3.7.0/doc/releases/ |
D | release-notes-3.4.rst | 483 * Added support for multiple CIS/CIG setup/connect and teardown procedures in
|
D | release-notes-2.2.rst | 1153 * :github:`16329` - ztest teardown function not called if test function is interrupted
|
D | release-notes-3.5.rst | 934 * Refactored the code responsible for connection teardown to fix found bugs and
|
D | release-notes-3.7.rst | 1545 * Fixed ACK number verification during connection teardown.
|
D | release-notes-3.2.rst | 2597 * :github:`39153` - Improve ztest test suites (setup/teardown/before/after + OOD)
|