~spuul/nginx/trunk

« back to all changes in this revision

Viewing changes to debian/modules/nginx-lua/t/057-flush-timeout.t

  • Committer: Package Import Robot
  • Author(s): Christos Trochalakis, Christos Trochalakis
  • Date: 2014-02-13 11:41:49 UTC
  • mfrom: (1.3.32)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: package-import@ubuntu.com-20140213114149-tkp78c45rzu3wr6y
Tags: 1.4.5-1
[ Christos Trochalakis ]
* New upstream release.
* debian/modules/nginx-lua:
  + Update nginx-lua to v0.9.4
* debian/nginx-naxsi-ui.preinst:
  + Fix exit status issue (Closes: #735152)
* debian/control:
  + Fix arch:all to arch:any dependencies
  + Make nginx depend on specific flavor version
* debian/nginx-*.postinst:
  + Make nginx start by default (Closes: #735551)
* debian/nginx-*.prerm:
  + No need to check for invoke-rc.d,
    correctly set the exit code on error
* debian/nginx-common.nginx.init:
  + Rewrite some parts of the initscript
  + Introduce rotate command
  + Introduce upgrade command

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        $ENV{LD_PRELOAD} = "mockeagain.so $ENV{LD_PRELOAD}";
10
10
    }
11
11
 
12
 
    $ENV{MOCKEAGAIN} = 'w';
 
12
    if ($ENV{MOCKEAGAIN} eq 'r') {
 
13
        $ENV{MOCKEAGAIN} = 'rw';
 
14
 
 
15
    } else {
 
16
        $ENV{MOCKEAGAIN} = 'w';
 
17
    }
13
18
 
14
19
    $ENV{TEST_NGINX_EVENT_TYPE} = 'poll';
15
20
    $ENV{MOCKEAGAIN_WRITE_TIMEOUT_PATTERN} = 'hello, world';
17
22
}
18
23
 
19
24
use lib 'lib';
20
 
use Test::Nginx::Socket;
 
25
use Test::Nginx::Socket::Lua;
21
26
use t::StapThread;
22
27
 
23
28
our $GCScript = $t::StapThread::GCScript;
172
177
    }
173
178
}
174
179
 
175
 
F(ngx_http_lua_tcp_socket_cleanup) {
 
180
F(ngx_http_lua_coctx_cleanup) {
176
181
    println("lua tcp socket cleanup")
177
182
}
178
183