* This routine is called when the -t command-line option is supplied. * It executes only once, in the startup process, after the check_config * phase and just before the process exits. At this point the module * may output any information useful in configuration testing. * * This is a VOID hook: all defined handlers get called. */
| 776 | * This is a VOID hook: all defined handlers get called. |
| 777 | */ |
| 778 | static void x_test_config(apr_pool_t *pconf, server_rec *s) |
| 779 | { |
| 780 | apr_file_t *out = NULL; |
| 781 | |
| 782 | apr_file_open_stderr(&out, pconf); |
| 783 | |
| 784 | apr_file_printf(out, "Example module configuration test routine\n"); |
| 785 | |
| 786 | trace_startup(pconf, s, NULL, "x_test_config()"); |
| 787 | } |
| 788 | |
| 789 | /* |
| 790 | * This routine is called to perform any module-specific log file |
nothing calls this directly
no test coverage detected