Lines Matching full:test
1 /* This is the test control routine the NetX TCP/IP stack. All tests are dispatched from this rout…
23 /* Define the test control ThreadX objects... */
30 /* Define the test control global variables. */
44 /* Define test entry pointer type. */
53 /* Define the prototypes for the test entry points. */
112 /* Define the array of test entry points. */
242 /* Create the test control thread. */ in tx_application_define()
243 tx_thread_create(&test_control_thread, "test control thread", test_control_thread_entry, 0, in tx_application_define()
249 /* Create the test control semaphore. */ in tx_application_define()
250 tx_semaphore_create(&test_control_sema, "HTTPS Test control semaphore", 0); in tx_application_define()
260 /* Define the test control thread. This thread is responsible for dispatching all of the
261 tests in the ThreadX test suite. */
272 /* Dispatch the test. */ in test_control_thread_entry()
279 /* Suspend control test to allow test to run. */ in test_control_thread_entry()
285 /* Test case timeouts. */ in test_control_thread_entry()
295 /* Test finished, cleanup in preparation for the next test. */ in test_control_thread_entry()
302 …printf("**** Test Summary: Tests Passed: %lu Tests Warning: %lu Tests Failed: %lu\n", test… in test_control_thread_entry()
334 /* Resume the control thread to fully exit the test. */ in test_control_return()
495 /* Delete all threads, except for timer thread, and test control thread. */ in test_control_cleanup()
508 /* Determine if this thread is the test control thread. */ in test_control_cleanup()
537 …/* At this point, only the test control thread and the system timer thread and/or mutex should sti… in test_control_cleanup()