Lines Matching full:test
117 /* The argument to run_one_test, which is the test function that is registered
119 * line (before it is modified by the test's "before" function), the remaining
120 * items are node names forming the path to the test node.
139 * Once the test is reached, its function is executed.
143 * that after execution they can be safely free'd. The test's
149 * the test, and the remaining elements represent the actual objects
153 * 1) @before test function as defined in the given QOSGraphTestOptions
157 * 4) start test
168 /* Before test */ in run_one_test()
171 test_arg = test_node->u.test.arg; in run_one_test()
172 if (test_node->u.test.before) { in run_one_test()
173 test_arg = test_node->u.test.before(cmd_line, test_arg); in run_one_test()
180 test_node->u.test.function(obj, test_arg, alloc); in run_one_test()
203 * path_str will be only used to build the test name, and won't need the
210 * the node, (ex for "x86_64/pc" it will be "pc"), used to build the test
299 if (path->u.test.subprocess) { in walk_path()
319 * - Initializes the glib test framework
323 * the glib test framework (walk_path)
325 * machine/drivers/test objects
333 qos_printf("qos_test running single test in subprocess\n"); in main()