Lines Matching +full:line +full:- +full:name
4 * SPDX-License-Identifier: Apache-2.0
9 #include "cmdline.h" /* native_sim command line options header */
31 "Name of tests to run. Comma separated list formatted as " in add_test_filter_option()
48 * line.
70 * @param value - Sets list_tests to value
78 * @brief Helper function to get command line argument for listing tests
89 * @brief Helper function to get command line test arguments
101 * @brief Lists registered unit tests in this binary, one per line
115 while ((test = z_ztest_get_next_test(ptr->name, test)) != NULL) { in z_ztest_list_tests()
116 TC_PRINT("%s::%s\n", test->test_suite_name, test->name); in z_ztest_list_tests()
141 * @brief Checks if the test_args contains the suite/test name.
179 * in the command line argument.
183 * @param suite - name of test suite
184 * @param test - name of unit test
200 * in the command line argument.
214 if (test_args != NULL && !z_ztest_testargs_contains(suite->name, NULL)) { in z_ztest_should_suite_run()
216 suite->stats->run_count++; in z_ztest_should_suite_run()
217 } else if (suite->predicate != NULL) { in z_ztest_should_suite_run()
218 run_suite = suite->predicate(state); in z_ztest_should_suite_run()