diff options
author | Ingela Anderton Andin <[email protected]> | 2015-12-01 10:04:58 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2015-12-01 10:04:58 +0100 |
commit | c3d8abd51baafd992bddba8988ebb901eba0d072 (patch) | |
tree | b1202c6e914b4a791931bb0ce4752d29dba5cabf /lib/inets/test/httpd_SUITE.erl | |
parent | 49daa385517010dd03dc5de6b37265eb06d59c5a (diff) | |
parent | 552818fd16f1a842e5d206d43bb442de685356da (diff) | |
download | otp-c3d8abd51baafd992bddba8988ebb901eba0d072.tar.gz otp-c3d8abd51baafd992bddba8988ebb901eba0d072.tar.bz2 otp-c3d8abd51baafd992bddba8988ebb901eba0d072.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/inets/test/httpd_SUITE.erl')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index 9bd6f3636c..1d8a603981 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -117,7 +117,7 @@ groups() -> {htaccess, [], [htaccess_1_1, htaccess_1_0, htaccess_0_9]}, {security, [], [security_1_1, security_1_0]}, %% Skip 0.9 as causes timing issus in test code {http_1_1, [], [host, chunked, expect, cgi, cgi_chunked_encoding_test, - trace, range, if_modified_since] ++ http_head() ++ http_get() ++ load()}, + trace, range, if_modified_since, mod_esi_chunk_timeout] ++ http_head() ++ http_get() ++ load()}, {http_1_0, [], [host, cgi, trace] ++ http_head() ++ http_get() ++ load()}, {http_0_9, [], http_head() ++ http_get() ++ load()} ]. @@ -757,6 +757,13 @@ esi(Config) when is_list(Config) -> Config, [{statuscode, 200}, {no_header, "cache-control"}]). %%------------------------------------------------------------------------- +mod_esi_chunk_timeout(Config) when is_list(Config) -> + ok = httpd_1_1:mod_esi_chunk_timeout(?config(type, Config), + ?config(port, Config), + ?config(host, Config), + ?config(node, Config)). + +%%------------------------------------------------------------------------- cgi() -> [{doc, "Test mod_cgi"}]. |