Home
last modified time | relevance | path

Searched refs:teardown (Results 1 – 21 of 21) sorted by relevance

/Zephyr-Core-3.7.0/tests/ztest/fail/
DKconfig11 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
DREADME.rst13 - ``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/
Dfs_mgmt_hash_checksum_sha256.c50 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/
Dmain.c235 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/
Dmain.c224 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/
Dull_conn_iso_types.h31 uint16_t teardown:1; /* 1 if CIS teardown has been initiated */ member
Dull_conn_iso.c565 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()
Dull_peripheral_iso.c252 cis->teardown = 0; in ull_peripheral_iso_acquire()
Dull_central_iso.c719 cis->teardown = 0; in ll_cis_create()
/Zephyr-Core-3.7.0/samples/net/sockets/socketpair/src/
Dmain.c148 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/
Dztest_test.h204 const ztest_suite_teardown_t teardown; member
241 .teardown = (teardown_fn), \
/Zephyr-Core-3.7.0/include/zephyr/net/
Dwifi_mgmt.h585 } teardown; member
/Zephyr-Core-3.7.0/subsys/testsuite/ztest/src/
Dztest.c896 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/
Dhci_driver.c471 if (cis && !cis->teardown) { in encode_node()
/Zephyr-Core-3.7.0/subsys/net/l2/wifi/
Dwifi_shell.c1247 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/
Dztest.rst29 * :c:type:`ztest_suite_teardown_t` - An optional teardown function which will run at the end of
/Zephyr-Core-3.7.0/doc/releases/
Drelease-notes-3.4.rst483 * Added support for multiple CIS/CIG setup/connect and teardown procedures in
Drelease-notes-2.2.rst1153 * :github:`16329` - ztest teardown function not called if test function is interrupted
Drelease-notes-3.5.rst934 * Refactored the code responsible for connection teardown to fix found bugs and
Drelease-notes-3.7.rst1545 * Fixed ACK number verification during connection teardown.
Drelease-notes-3.2.rst2597 * :github:`39153` - Improve ztest test suites (setup/teardown/before/after + OOD)