diff http_try_files.t @ 819:3200d5b4ffa8

Tests: removed TODOs for fixes merged in 1.8.1.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 26 Jan 2016 14:36:57 +0300
parents f3b5bee3a14e
children e9064d691790
line wrap: on
line diff
--- a/http_try_files.t
+++ b/http_try_files.t
@@ -116,20 +116,8 @@ like(http_get('/file-dir/'), qr!404 Not!
 like(http_get('/dir-dir/'), qr!301 Moved Permanently!, 'dir matches dir');
 like(http_get('/dir-file/'), qr!404 Not!, 'dir does not match file');
 
-SKIP: {
-skip 'leaves coredump', 1 unless $t->has_version('1.9.4')
-	or $ENV{TEST_NGINX_UNSAFE};
-
 like(http_get('/alias-re.html'), qr!SEE THIS!, 'alias in regex location');
-
-}
-
-TODO: {
-local $TODO = 'not yet' unless $t->has_version('1.9.4');
-
 like(http_get('/alias-nested/found.html'), qr!SEE THIS!,
 	'alias with nested location');
 
-}
-
 ###############################################################################