Lines Matching full:log

3850 	OPTIONS[opt_cnt++] = "error.log";  in START_TEST()
3852 OPTIONS[opt_cnt++] = "access.log"; in START_TEST()
3862 /* Remove log files (they may exist from previous incomplete runs of in START_TEST()
3864 (void)remove("error.log"); in START_TEST()
3865 (void)remove("access.log"); in START_TEST()
3898 /* Check access.log */ in START_TEST()
3900 f = fopen("access.log", "r"); in START_TEST()
3901 ck_assert_msg(f != NULL, "Cannot open access log file"); in START_TEST()
3904 ck_assert_msg(ok, "Cannot read access log file"); in START_TEST()
3908 ck_assert_msg(ok, "Did not find uri in access log file"); in START_TEST()
3910 ck_assert_msg(ok, "Did not find HTTP status code in access log file"); in START_TEST()
3912 /* Check error.log */ in START_TEST()
3914 f = fopen("error.log", "r"); in START_TEST()
3920 "Should not create error log file on 404, but got [%s]", in START_TEST()
3923 /* Remove log files */ in START_TEST()
3924 (void)remove("error.log"); in START_TEST()
3925 (void)remove("access.log"); in START_TEST()
3936 /* Check access.log */ in START_TEST()
3938 f = fopen("access.log", "r"); in START_TEST()
3945 "Should not create access log file if start fails, but got [%s]", in START_TEST()
3948 /* Check error.log */ in START_TEST()
3950 f = fopen("error.log", "r"); in START_TEST()
3951 ck_assert_msg(f != NULL, "Cannot open access log file"); in START_TEST()
3954 ck_assert_msg(ok, "Cannot read access log file"); in START_TEST()
3958 ck_assert_msg(ok, "Did not find port as error reason in error log file"); in START_TEST()
3961 /* Remove log files */ in START_TEST()
3962 (void)remove("error.log"); in START_TEST()
3963 (void)remove("access.log"); in START_TEST()
4004 * but it should be written to the log and passed to in test_throttle_begin_request()