[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15160001#comment-15160001
 ] 

ASF GitHub Bot commented on TS-3938:


Github user jpeach commented on the pull request:

https://github.com/apache/trafficserver/pull/497#issuecomment-187996632
  
FWIW https://wiki.debian.org/Hardening


> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159998#comment-15159998
 ] 

ASF GitHub Bot commented on TS-3938:


Github user zwoop commented on the pull request:

https://github.com/apache/trafficserver/pull/497#issuecomment-187996374
  
Does any of these flags change with the choice of compiler? LLVM / clang? 
Also, FORTIFY_SOURCE is good, we've had it trip in prod at least once (which is 
a good thing :).


> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4220) DNSHandler::mainEvent

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159959#comment-15159959
 ] 

ASF GitHub Bot commented on TS-4220:


Github user scw00 commented on the pull request:

https://github.com/apache/trafficserver/pull/493#issuecomment-187988003
  
sry!!


> DNSHandler::mainEvent
> -
>
> Key: TS-4220
> URL: https://issues.apache.org/jira/browse/TS-4220
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: song
>
> Dear all
>   failover_now return false when the name server's mark is not expiring, and 
> we need to call rr_failure to mark the name server as down.
> Thx!!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159915#comment-15159915
 ] 

ASF GitHub Bot commented on TS-3938:


GitHub user bryancall opened a pull request:

https://github.com/apache/trafficserver/pull/497

TS-3938: Add hardening (fortify) as an option to configure



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/bryancall/trafficserver TS-3938

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/trafficserver/pull/497.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #497


commit 3ea0471bcfd82eecf7a7b2892433399d9874a0be
Author: Bryan Call 
Date:   2016-02-24T00:04:57Z

TS-3938: Add hardening (fortify) as an option to configure




> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread Bryan Call (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Call resolved TS-4212.

Resolution: Fixed

> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread Bryan Call (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Call reassigned TS-4212:
--

Assignee: Bryan Call

> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
>Assignee: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread Bryan Call (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159901#comment-15159901
 ] 

Bryan Call commented on TS-3938:


With hardening:
{code}
[bcall@homer trafficserver]$ size --format=sysv /usr/local/bin/traffic_server
/usr/local/bin/traffic_server  :
section  size  addr
.interp28   624
.note.ABI-tag  32   652
.note.gnu.build-id 36   684
.gnu.hash   55684   720
.dynsym203712 56408
.dynstr280445260120
.gnu.version16976540566
.gnu.version_r512557544
.rela.dyn  166512558056
.rela.plt   16968724568
.init  26741536
.plt11328741568
.text 3547250752896
.fini   9   4300148
.rodata371361   4300160
.eh_frame_hdr   52572   4671524
.eh_frame  297388   4724096
.gcc_except_table   37171   5021484
.tbss  32   7158176
.init_array  1128   7158176
.fini_array 8   7159304
.jcr8   7159312
.data.rel.ro96160   7159328
.dynamic  784   7255488
.got 5928   7256272
.data   17344   7262208
.bss  6154080   7279552
.comment   57 0
.debug_aranges 127232 0
.debug_info  24761745 0
.debug_abbrev  905936 0
.debug_line   2396123 0
.debug_frame   96 0
.debug_str1098848 0
.debug_loc   16834550 0
.debug_ranges 6277424 0
Total63735493
{code}

> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread Bryan Call (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159897#comment-15159897
 ] 

Bryan Call commented on TS-3938:


Without hardening on in the build:
{code}
[bcall@homer trafficserver]$ size --format=sysv /usr/local/bin/traffic_server
/usr/local/bin/traffic_server  :
section  size   addr
.interp284194928
.note.ABI-tag  324194956
.note.gnu.build-id 364194988
.gnu.hash   557724195024
.dynsym2036164250800
.dynstr2804034454416
.gnu.version169684734820
.gnu.version_r4964751792
.rela.dyn10324752288
.rela.plt   169684753320
.init  264770288
.plt113284770320
.text 33748504781648
.fini   98156500
.rodata4350248156512
.eh_frame_hdr   525728591536
.eh_frame  3795488644112
.gcc_except_table   370499023660
.tbss  32   11160032
.init_array  1128   11160032
.fini_array 8   11161160
.jcr8   11161168
.data.rel.ro48736   11161184
.dynamic  752   11209920
.got   56   11210672
.got.plt 5680   11210752
.data   16032   11216448
.bss  6154304   11232480
.comment   57  0
.debug_aranges 127232  0
.debug_info  24763121  0
.debug_abbrev  905612  0
.debug_line   2349758  0
.debug_frame   96  0
.debug_str1098732  0
.debug_loc   16705696  0
.debug_ranges 6131856  0
Total63174653
{code}

> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread Bryan Call (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bryan Call reassigned TS-3938:
--

Assignee: Bryan Call  (was: Jason Kenny)

> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3938) Add hardening (fortify) as an option to configure

2016-02-23 Thread Bryan Call (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3938?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159896#comment-15159896
 ] 

Bryan Call commented on TS-3938:


Here is another article on hardening and testing: 
https://securityblog.redhat.com/2012/11/28/position-independent-executables-pie/

> Add hardening (fortify) as an option to configure
> -
>
> Key: TS-3938
> URL: https://issues.apache.org/jira/browse/TS-3938
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Build
>Reporter: Leif Hedstrom
>Assignee: Bryan Call
> Fix For: sometime
>
>
> It might be useful to add an option, e.g. --with-hardening, such that we can 
> build with various hardening compiler options. For example. I've used
> {code}
> CC="/opt/gcc5/bin/gcc"; export CC
> CXX="/opt/gcc5/bin/g++"; export CXX
> CFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CFLAGS
> CXXFLAGS="-fstack-protector -fno-omit-frame-pointer"; export CXXFLAGS
> CPPFLAGS="-D_FORTIFY_SOURCE=2"; export CPPFLAGS
> LDFLAGS="-Wl,-z,relro -Wl,-z,now"; export LDFLAGS
> "./configure" \
> "--enable-experimental-plugins" \
> "--prefix=/opt/ats" \
> "CC=/opt/gcc5/bin/gcc" \
> "CXX=/opt/gcc5/bin/g++" \
> "CFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CXXFLAGS=-fstack-protector -fno-omit-frame-pointer" \
> "CPPFLAGS=-D_FORTIFY_SOURCE=2" \
> "LDFLAGS=-Wl,-z,relro -Wl,-z,now" \
> "$@"
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4095) New cppapi plugin for converting image formats to wepb

2016-02-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4095?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159859#comment-15159859
 ] 

ASF subversion and git services commented on TS-4095:
-

Commit fa9c94b7c0f98bda845faed1e0cf6e24245b1489 in trafficserver's branch 
refs/heads/master from [~jpe...@apache.org]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=fa9c94b ]

TS-4095: webp_transform depends on the C++ API


> New cppapi plugin for converting image formats to wepb
> --
>
> Key: TS-4095
> URL: https://issues.apache.org/jira/browse/TS-4095
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API, Plugins
>Reporter: Sandeep Davu
>Assignee: Kit Chan
>  Labels: review
> Fix For: 6.2.0
>
>
> Support for png and jpeg only.  Webp is a format introduced by google and can 
> retain the quality of the image by reducing the image size.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159833#comment-15159833
 ] 

ASF subversion and git services commented on TS-4212:
-

Commit 35e93fb0a1112e2e9f66f406abd90b6b55fec8c6 in trafficserver's branch 
refs/heads/master from [~bcall]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=35e93fb ]

TS-4212: Add option to track memory allocation with OpenSSL

This closes #489


> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159834#comment-15159834
 ] 

ASF GitHub Bot commented on TS-4212:


Github user asfgit closed the pull request at:

https://github.com/apache/trafficserver/pull/489


> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159757#comment-15159757
 ] 

ASF GitHub Bot commented on TS-4212:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/489#issuecomment-187939855
  
Updated to look for malloc_usable_size in autoconf and #ifdef for support.


> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (TS-4095) New cppapi plugin for converting image formats to wepb

2016-02-23 Thread Kit Chan (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4095?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kit Chan resolved TS-4095.
--
Resolution: Fixed

> New cppapi plugin for converting image formats to wepb
> --
>
> Key: TS-4095
> URL: https://issues.apache.org/jira/browse/TS-4095
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API, Plugins
>Reporter: Sandeep Davu
>Assignee: Kit Chan
>  Labels: review
> Fix For: 6.2.0
>
>
> Support for png and jpeg only.  Webp is a format introduced by google and can 
> retain the quality of the image by reducing the image size.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (TS-4095) New cppapi plugin for converting image formats to wepb

2016-02-23 Thread Kit Chan (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4095?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Kit Chan reassigned TS-4095:


Assignee: Kit Chan  (was: Brian Geffon)

> New cppapi plugin for converting image formats to wepb
> --
>
> Key: TS-4095
> URL: https://issues.apache.org/jira/browse/TS-4095
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API, Plugins
>Reporter: Sandeep Davu
>Assignee: Kit Chan
>  Labels: review
> Fix For: 6.2.0
>
>
> Support for png and jpeg only.  Webp is a format introduced by google and can 
> retain the quality of the image by reducing the image size.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Work started] (TS-4095) New cppapi plugin for converting image formats to wepb

2016-02-23 Thread Kit Chan (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4095?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Work on TS-4095 started by Kit Chan.

> New cppapi plugin for converting image formats to wepb
> --
>
> Key: TS-4095
> URL: https://issues.apache.org/jira/browse/TS-4095
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API, Plugins
>Reporter: Sandeep Davu
>Assignee: Kit Chan
>  Labels: review
> Fix For: 6.2.0
>
>
> Support for png and jpeg only.  Webp is a format introduced by google and can 
> retain the quality of the image by reducing the image size.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (TS-4207) Crash in HostDB, likely a regression from 5.x

2016-02-23 Thread Masa Sekimura (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4207?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15158299#comment-15158299
 ] 

Masa Sekimura edited comment on TS-4207 at 2/23/16 6:27 PM:


I've just noticed that inside of HostDBContinuation::insert, lookup_block is 
using hardcoded value "3" for levels. It's unlikely to match that md5 value but 
it's possible match a different block due to the hardcoded value? If so, 
hostDB.delete_block(old_r) can be deleting a different block.

{code}
diff --git a/iocore/hostdb/HostDB.cc b/iocore/hostdb/HostDB.cc
index eb5b541..0101848 100644
--- a/iocore/hostdb/HostDB.cc
+++ b/iocore/hostdb/HostDB.cc
@@ -743,7 +743,7 @@ HostDBContinuation::insert(unsigned int attl)

   ink_assert(this_ethread() == hostDB.lock_for_bucket(bucket)->thread_holding);
   // remove the old one to prevent buildup
-  HostDBInfo *old_r = hostDB.lookup_block(folded_md5, 3);
+  HostDBInfo *old_r = hostDB.lookup_block(folded_md5, hostDB.levels);
   if (old_r)
 hostDB.delete_block(old_r);
   HostDBInfo *r = hostDB.insert_block(folded_md5, NULL, 0);
{code}


was (Author: msekimura):
I've just noticed that inside of HostDBContinuation::insert, lookup_block is 
using hardcoded value "3" for levels. It's unlikely to match that md5 value but 
it's possible match a different block due to the hardcoded value? If so, 
hostDB.delete_block(old_r) can be deleting a different block.

{code}
diff --git a/iocore/hostdb/HostDB.cc b/iocore/hostdb/HostDB.cc
index eb5b541..0101848 100644
--- a/iocore/hostdb/HostDB.cc
+++ b/iocore/hostdb/HostDB.cc
@@ -743,7 +743,7 @@ HostDBContinuation::insert(unsigned int attl)

   ink_assert(this_ethread() == hostDB.lock_for_bucket(bucket)->thread_holding);
   // remove the old one to prevent buildup
-  HostDBInfo *old_r = hostDB.lookup_block(folded_md5, 3);
+  HostDBInfo *old_r = hostDB.lookup_block(folded_md5, hostdb.levels);
   if (old_r)
 hostDB.delete_block(old_r);
   HostDBInfo *r = hostDB.insert_block(folded_md5, NULL, 0);
{code}

> Crash in HostDB, likely a regression from 5.x
> -
>
> Key: TS-4207
> URL: https://issues.apache.org/jira/browse/TS-4207
> Project: Traffic Server
>  Issue Type: Bug
>  Components: HostDB
>Reporter: Leif Hedstrom
>Priority: Blocker
>  Labels: crash
> Fix For: 6.2.0
>
>
> We're seeing a new crash in HostDB, which did not occur in 5.3.x:
> {code}
> (gdb) bt
> #0  0x2ac7b2bb in HttpSM::process_hostdb_info(HostDBInfo*) () at 
> ../../iocore/hostdb/P_HostDBProcessor.h:295
> #1  0x2ac88b16 in HttpSM::state_hostdb_lookup(int, void*) () at 
> HttpSM.cc:2126
> #2  0x2ac9713d in HttpSM::main_handler(int, void*) () at 
> HttpSM.cc:2561
> #3  0x2ad7803e in reply_to_cont(Continuation*, HostDBInfo*, bool) () 
> at ../../iocore/eventsystem/I_Continuation.h:153
> #4  0x2ad7eca5 in HostDBContinuation::dnsEvent(int, HostEnt*) () at 
> HostDB.cc:1685
> #5  0x2ad98faf in DNSEntry::postEvent(int, Event*) () at 
> ../../iocore/eventsystem/I_Continuation.h:153
> #6  0x2ae7e420 in EThread::process_event(Event*, int) () at 
> I_Continuation.h:153
> #7  0x2ae7f2ab in EThread::execute() () at UnixEThread.cc:179
> #8  0x2ae7de06 in spawn_thread_internal(void*) () at Thread.cc:86
> #9  0x2d6ac9d1 in start_thread () from /lib64/libpthread.so.0
> #10 0x2e8b58fd in clone () from /lib64/libc.so.6
> {code}
> I think some inlining here complicates things, what it looks like the "r" is 
> NULL, but it somehow still ends up using r->rr ?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4220) DNSHandler::mainEvent

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159363#comment-15159363
 ] 

ASF GitHub Bot commented on TS-4220:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/493#issuecomment-187827716
  
Same pull request as #492 


> DNSHandler::mainEvent
> -
>
> Key: TS-4220
> URL: https://issues.apache.org/jira/browse/TS-4220
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: song
>
> Dear all
>   failover_now return false when the name server's mark is not expiring, and 
> we need to call rr_failure to mark the name server as down.
> Thx!!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4048) Broken Vagrantfile in a lot of ways

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4048?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159358#comment-15159358
 ] 

ASF GitHub Bot commented on TS-4048:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/490#issuecomment-187827174
  
@jpeach will shepard.


> Broken Vagrantfile in a lot of ways
> ---
>
> Key: TS-4048
> URL: https://issues.apache.org/jira/browse/TS-4048
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Build, Tools
>Reporter: Christoph Keller
>Priority: Minor
> Fix For: sometime
>
>
> The Vagrant-File seems to be broken.
> 1. I tried to "vagrant up centos64" which failed due to files that could not 
> be downloaded during provisioning.
> 2. Saucy Images are no longer available and should be removed from 
> Vagrantfile.
> 3. I guess it would be better to use sshfs instead of nfs for the shared 
> folder due to the fact that a lot of people use encrypted home-directories 
> these days which makes mounting the shared folder fail. You don't even get a 
> proper errormessage for that.
> I didn't check all resources refered to by either Vagrantfile or the puppet 
> files but i guess there are even more broken links.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4212) Add option to track memory allocation with OpenSSL

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4212?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159356#comment-15159356
 ] 

ASF GitHub Bot commented on TS-4212:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/489#issuecomment-187826715
  
@PSUdaemon said there is FreeBSD support for malloc_usable_size(), but not 
for OmniOS.

Need to #ifdef for OmniOS.


> Add option to track memory allocation with OpenSSL
> --
>
> Key: TS-4212
> URL: https://issues.apache.org/jira/browse/TS-4212
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, SSL
>Reporter: Bryan Call
> Fix For: 6.2.0
>
>
> For example:
> {code}
> [bcall@l1 ~]$ sudo traffic_line -s proxy.config.res_track_memory -v 2
> [bcall@l1 ~]$ sudo kill -sigusr1 $(pidof traffic_server); tail traffic.out
> Total Allocated  | Total Freed  | Currently Allocated  | Type
> -|--|--|--
>  18437960662 |  17181254510 |   1256706152 | SSL 
> Allocated Memory
> -|--|--|--
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4065) change metrics to counters where appropriate

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4065?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159348#comment-15159348
 ] 

ASF GitHub Bot commented on TS-4065:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/488#issuecomment-187824115
  
@zwoop will shepard.


> change metrics to counters where appropriate
> 
>
> Key: TS-4065
> URL: https://issues.apache.org/jira/browse/TS-4065
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Management API, Metrics
>Reporter: James Peach
>Assignee: Meera Mosale Nataraja
> Fix For: sometime
>
>
> In {{mgmt/RecordsConfig.cc}} almost all the metrics are registered as 
> {{RECT_INT}} even though many (most?) of them have counter semantics. We 
> should register the counters as {{RECT_COUNTER}}.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4087) H2 flexible resource limitation

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4087?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159347#comment-15159347
 ] 

ASF GitHub Bot commented on TS-4087:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/485#issuecomment-187823737
  
I will take a look at this.


> H2 flexible resource limitation
> ---
>
> Key: TS-4087
> URL: https://issues.apache.org/jira/browse/TS-4087
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: HTTP/2
>Reporter: Ryo Okubo
>Assignee: Masaori Koshiba
> Fix For: 6.2.0
>
>
> Current H2 implementation depends on FetchSM and PluginVC to forward 
> requests. But their memory footprint is very high. It may be vulnerable to 
> DoS attack.
> As simple ways to avoid the problem, we can use two limitations, 
> _proxy.config.net.connections_throttle_ and 
> _proxy.config.http2.max_concurrent_streams_in_. But reducing number of 
> _proxy.config.net.connections_throttle_ causes that number of acceptable 
> HTTP/1.1 requests become lower. And reducing 
> _proxy.config.http2.max_concurrent_streams_in_ restricts benefits of H2.
> I'd like to propose more flexible resource limitation for current H2 impl 
> based on number of active H2 streams. Its adding an upper limit of active H2 
> streams. If tis exceeded, ATS send low number of 
> SETTINGS_MAX_CONCURRENT_STREAMS to clients and/or RST_STREAM frame.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4092) Decouple HPACK from HTTP/2

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4092?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159349#comment-15159349
 ] 

ASF GitHub Bot commented on TS-4092:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/460#issuecomment-187824312
  
I will take a look at this.


> Decouple HPACK from HTTP/2
> --
>
> Key: TS-4092
> URL: https://issues.apache.org/jira/browse/TS-4092
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: HTTP/2
>Reporter: Masakazu Kitajo
>Assignee: Masakazu Kitajo
> Fix For: 6.2.0
>
>
> Our HTTP/2 implementation and HPACK implementation are coupled tightly. This 
> is bad. It makes things complicated.
> I tried to write a test runner which uses [hpack-test-case 
> |https://github.com/http2jp/hpack-test-case], however, I had to call 
> functions in HTTP2.cc. Because HPACK.cc has only primitive encoder and 
> decoder, and doesn't handle header blocks. HTTP2.cc covers not only RFC7540 
> but also some part of RFC7541.
> On the other hand, HPACK.h exports pseudo header names as constants. They 
> should be in HTTP2.h or MIME.h as WKS. We don't need them in HPACK 
> implementation.
> Also, HPACK is used with QUIC (at least in current draft). We should decouple 
> HPACK from HTTP/2 so that we can use the module with QUIC in the future.
> Once we have done this, we can write tests for these improvements more easily.
> TS-4002, TS-4061, TS-4014 and TS-3478



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4133) Update url_sig plugin to pass application query parameters

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4133?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159344#comment-15159344
 ] 

ASF GitHub Bot commented on TS-4133:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/424#issuecomment-187822841
  
@jrushf1239k Please address the concerns and update the pull request.


> Update url_sig plugin to pass application query parameters
> --
>
> Key: TS-4133
> URL: https://issues.apache.org/jira/browse/TS-4133
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Plugins
>Reporter: John Rushford
>Assignee: John Rushford
> Fix For: 6.2.0
>
>
> Currently the url_sig plugin assumes that request urls have no other query 
> parameters but url signing related parameters.  After signing validation is 
> performed using the signing parameters all query parameters are stripped from 
> the request.
> This change will allow application query parameters that must be sent to the 
> origin to fulfill a request to be left intact in the request.  When signing a 
> request with application query parameters it is required that the url signing 
> parameters used by this plugin must come after the application parameters.  
> When the request comes in the plugin will truncate the url signing parameters 
> after verification leaving the application parameters intact.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4103) Introduce unittesting for CPP API.

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159342#comment-15159342
 ] 

ASF GitHub Bot commented on TS-4103:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/408#issuecomment-187822028
  
@bgaff can you shepard this?


> Introduce unittesting for CPP API.
> --
>
> Key: TS-4103
> URL: https://issues.apache.org/jira/browse/TS-4103
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API
>Reporter: Sandeep Davu
>Assignee: Brian Geffon
> Fix For: 6.2.0
>
>
> create mock classes for CPP API. 
> These mocks can be used for unit testing plugins written using CPP API.
> Using gtest as testing framework. gmock as mocking framework.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4115) Add a multi origin hierarchy to parent selection.

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4115?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159339#comment-15159339
 ] 

ASF GitHub Bot commented on TS-4115:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/407#issuecomment-187821803
  
Talking at the github meeting.  The consensus is that we should split the 
pull request into two pull requests.  One for multi origin and the other for 
retry logic.

We should also have the configuration in parent.config instead of 
records.config.



> Add a multi origin hierarchy to parent selection.
> -
>
> Key: TS-4115
> URL: https://issues.apache.org/jira/browse/TS-4115
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Core
>Reporter: John Rushford
>Assignee: John Rushford
> Fix For: 6.2.0
>
>
> Parent Selection is currently used to create a hierarchy of cache server 
> groups.  It would be useful to create an origin server hierarchy through 
> parent selection so that say mid tier caches could round robin requests to 
> multiple origin servers possibly at different sites using round robin load 
> balancing and possibly consistent hashing algorithms.
> FEATURE DESCRIPTION:
> A pull request accompanies this ticket that adds this feature to parent 
> selection.  A new configuration parameter "parent_is_proxy" is available in 
> parent config.  parent_is_proxy=true is the default and indicates that a list 
> of parents and secondary_parents are the usual parent caches but, when set to 
> false, it indicates that the list of parents are origin servers.
> When marked as origin servers, the server FQDN is removed from the http GET 
> request so that only the relative path is in the request.  Note that if 
> connectivity fails to all the origins listed or all are marked down, there is 
> no go direct behavior as these are the origins.
> When marked as origin servers, the following features are also available:
> 1)  simple retry - the response from the origin server is checked and if 
> simple retry is enabled and a response of 404 is received, the transaction is 
> retried using another parent origin.  This feature is enabled in 
> records.config using:
> CONFIG proxy.config.http.parent_origin.simple_retry_enabled INT 1
> The response code may be changed or added to from the default 404 by using a 
> comma separated list in records.config with:
>  CONFIG proxy.config.http.parent_origin.simple_retry_response_codes STRING 
> 404,4xx,...
> Both parameters are reloadable and overridable.
> 2)  dead server retry - Same as simple retry except that the parent is marked 
> down before the next parent is tried when a 503 response is received when 
> dead server retry is enabled.  The following record.config parameters control 
> this feature and both are reloadable and overridable:
> CONFIG proxy.config.http.parent_origin.dead_server_retry_enabled INT 0
> CONFIG proxy.config.http.parent_origin.dead_server_retry_response_codes 
> STRING 503



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4055) Coredump when closing a transaction with a stalled connection to the origin

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4055?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159313#comment-15159313
 ] 

ASF GitHub Bot commented on TS-4055:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/373#issuecomment-187818356
  
@shinrich is going to shepard this.


> Coredump when closing a transaction with a stalled connection to the origin  
> -
>
> Key: TS-4055
> URL: https://issues.apache.org/jira/browse/TS-4055
> Project: Traffic Server
>  Issue Type: Bug
>Affects Versions: 6.0.1
>Reporter: bettydramit
>Assignee: Bryan Call
>  Labels: crash
> Fix For: 6.0.1, 6.1.0
>
>
> {code}
> c++filt  traffic_server: Segmentation fault (Address not mapped to object [0x8])
> traffic_server - STACK TRACE: 
> /usr/bin/traffic_server(crash_logger_invoke(int, siginfo_t*, 
> void*)+0x8e)[0x4abf4e]
> /lib64/libpthread.so.0(+0x10430)[0x2abaac562430]
> /usr/bin/traffic_server(HttpSM::handle_server_setup_error(int, 
> void*)+0x25b)[0x5b5d0b]
> /usr/bin/traffic_server(HttpSM::state_send_server_request_header(int, 
> void*)+0x142)[0x5c0dd2]
> /usr/bin/traffic_server(HttpSM::main_handler(int, void*)+0xc8)[0x5c5e38]
> /usr/bin/traffic_server(UnixNetVConnection::mainEvent(int, 
> Event*)+0x4ff)[0x78651f]
> /usr/bin/traffic_server(InactivityCop::check_inactivity(int, 
> Event*)+0x28d)[0x7789ad]
> /usr/bin/traffic_server(EThread::process_event(Event*, int)+0x8a)[0x7bdf5a]
> /usr/bin/traffic_server(EThread::execute()+0xaa5)[0x7bf045]
> /usr/bin/traffic_server[0x7bda25]
> /lib64/libpthread.so.0(+0x7555)[0x2abaac559555]
> /lib64/libc.so.6(clone+0x6d)[0x2abaad67bb9d]
> Dec 05 21:00:12 localhost sendEmail[23289]: Email was sent successfully!
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4075) segmentation fault due to reenable in SNI Hook for a closed ssl connection

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4075?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159315#comment-15159315
 ] 

ASF GitHub Bot commented on TS-4075:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/374#issuecomment-187818415
  
@shinrich is going to shepard this.


> segmentation fault due to reenable in SNI Hook for a closed ssl connection
> --
>
> Key: TS-4075
> URL: https://issues.apache.org/jira/browse/TS-4075
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Plugins, SSL
>Reporter: Oknet Xu
> Fix For: 6.2.0
>
>
> I'm writing a ssl hook to look up a cert from mysql database.
> the SNI Hook stall at fetch cert from mysql database due to a database dump 
> lock every mid night.
> the SSL Client got timeout and closing the connection before SNI Hook 
> reenable the connection.
> Segmentation fault due to the TSVConnSSLConnectionGet() can not get a SSLVC 
> during reenable the SSLVC.
> {code}
> traffic_server: Segmentation fault (Address not mapped to object [(nil)])
> traffic_server - STACK TRACE:
> /usr/bin/traffic_server(crash_logger_invoke(int, siginfo_t*, 
> void*)+0xa2)[0x2b90c9955b22]
> /lib/x86_64-linux-gnu/libpthread.so.0(+0xf8d0)[0x2b90cc1ea8d0]
> /usr/lib/x86_64-linux-gnu/libstdc++.so.6(__dynamic_cast+0x60)[0x2b90cc9c3020]
> /usr/bin/traffic_server(TSVConnSSLConnectionGet+0x1e)[0x2b90c997832e]
> /usr/lib/trafficserver/modules/test-ssl.so(CertRequestContext::reenable()+0x8c)[0x2b90d5fe29dc]
> /usr/lib/trafficserver/modules/test-ssl.so(CertRequestContext::destroy()+0xe5)[0x2b90d5fe2b85]
> /usr/lib/trafficserver/modules/test-ssl.so(CertRequestContext::handler_content(tsapi_vio*)+0x29b)[0x2b90d5fe34db]
> /usr/lib/trafficserver/modules/test-ssl.so(CertRequestContext::handler_read(TSEvent,
>  tsapi_vio*)+0x36)[0x2b90d5fe3526]
> /usr/lib/trafficserver/modules/test-ssl.so(CertRequestContext::dispatch(tsapi_cont*,
>  TSEvent, void*)+0x95)[0x2b90d5fe35e5]
> /usr/bin/traffic_server(PluginVC::process_read_side(bool)+0x366)[0x2b90c998b0a6]
> /usr/bin/traffic_server(PluginVC::process_write_side(bool)+0x5a9)[0x2b90c998ba49]
> /usr/bin/traffic_server(PluginVC::main_handler(int, 
> void*)+0x371)[0x2b90c998e1c1]
> /usr/bin/traffic_server(EThread::process_event(Event*, 
> int)+0x90)[0x2b90c9bc8620]
> /usr/bin/traffic_server(EThread::execute()+0x67f)[0x2b90c9bc922f]
> /usr/bin/traffic_server(+0x369a1a)[0x2b90c9bc7a1a]
> /lib/x86_64-linux-gnu/libpthread.so.0(+0x80a4)[0x2b90cc1e30a4]
> /lib/x86_64-linux-gnu/libc.so.6(clone+0x6d)[0x2b90cd26704d]
> traffic_server: using root directory '/usr'
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4042) Add feature to buffer request body before making downstream requests

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4042?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159307#comment-15159307
 ] 

ASF GitHub Bot commented on TS-4042:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/351#issuecomment-187818009
  
Talking at the github meeting.  We should have a maximum size that will be 
buffered in memory.  This should go through API review.  Please provide 
documentation on the APIs.


> Add feature to buffer request body before making downstream requests
> 
>
> Key: TS-4042
> URL: https://issues.apache.org/jira/browse/TS-4042
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Core, CPP API, TS API
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 6.2.0
>
>
> We need a way to examine the request body without making a downstream 
> request, this feature has many use cases including:
>   - Ability to buffer the body and ensure a full post is received before 
> committing downstream resources.
>   - Ability to choose an origin based on request body
>   - Ability to do request content filtering such as a WAF might provide 
> before the origin is involved.
> Today you have two options to inspect a request body:
>   1) Transformations: the problem with transformations is that you only start 
> receiving the request bytes after a sink has been established, which in this 
> case is the downstream origin.
>   2) Create an intercept and use fetch apis to then send the downstream 
> request: while this technically works it turns out to be a ton of code and is 
> in general pretty problematic, we actually tried this approach for a while 
> and had nothing but problems with it.
> We feel it would be ideal if we could intercept the body without breaking the 
> normal ATS state flow. There used to exist code (and it's still in the core 
> just #ifdefed out) to drain the request body. I use that code as the basis 
> for this request buffering code. We added APIs to both the C and C++ APIs so 
> that this request buffering can be enabled from a plugin and the plugin can 
> inspect the body as chunks arrive or when it's complete. We've included an 
> example plugin that will error a transaction if a minimum rate of transfer is 
> not maintained.
> I'm confident that this feature will bring plenty of questions / feedback, so 
> let's get that party started.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4032) Provide command line messaging for plugins

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4032?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159288#comment-15159288
 ] 

ASF GitHub Bot commented on TS-4032:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/343#issuecomment-187814680
  
@SolidWallOfCode and @dragon512 are going to take ownership of this.


> Provide command line messaging for plugins
> --
>
> Key: TS-4032
> URL: https://issues.apache.org/jira/browse/TS-4032
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: Plugins
>Reporter: Alan M. Carroll
>Assignee: Alan M. Carroll
>  Labels: Review
> Fix For: 6.2.0
>
>
> Add another event  to the lifecycle hook, ALERT. This will be sent only from 
> an external API, e.g. {{traffic_ctl}}. Any plugin that wants to be alertable 
> from the command line can attach to this hook and watch for the event 
> {{TS_EVENT_LIFECYCLE_ALERT}}. The data for the event wil be a string that is 
> provided by the external agent.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (TS-4207) Crash in HostDB, likely a regression from 5.x

2016-02-23 Thread Leif Hedstrom (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4207?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159283#comment-15159283
 ] 

Leif Hedstrom edited comment on TS-4207 at 2/23/16 5:47 PM:


Why don' you ask [~msekimura] to test it ;) And yes, this is an interesting 
catch, and this bug has been in there since basically forever.


was (Author: zwoop):
Why don' you ask [~msekimura] to test it ;)

> Crash in HostDB, likely a regression from 5.x
> -
>
> Key: TS-4207
> URL: https://issues.apache.org/jira/browse/TS-4207
> Project: Traffic Server
>  Issue Type: Bug
>  Components: HostDB
>Reporter: Leif Hedstrom
>Priority: Blocker
>  Labels: crash
> Fix For: 6.2.0
>
>
> We're seeing a new crash in HostDB, which did not occur in 5.3.x:
> {code}
> (gdb) bt
> #0  0x2ac7b2bb in HttpSM::process_hostdb_info(HostDBInfo*) () at 
> ../../iocore/hostdb/P_HostDBProcessor.h:295
> #1  0x2ac88b16 in HttpSM::state_hostdb_lookup(int, void*) () at 
> HttpSM.cc:2126
> #2  0x2ac9713d in HttpSM::main_handler(int, void*) () at 
> HttpSM.cc:2561
> #3  0x2ad7803e in reply_to_cont(Continuation*, HostDBInfo*, bool) () 
> at ../../iocore/eventsystem/I_Continuation.h:153
> #4  0x2ad7eca5 in HostDBContinuation::dnsEvent(int, HostEnt*) () at 
> HostDB.cc:1685
> #5  0x2ad98faf in DNSEntry::postEvent(int, Event*) () at 
> ../../iocore/eventsystem/I_Continuation.h:153
> #6  0x2ae7e420 in EThread::process_event(Event*, int) () at 
> I_Continuation.h:153
> #7  0x2ae7f2ab in EThread::execute() () at UnixEThread.cc:179
> #8  0x2ae7de06 in spawn_thread_internal(void*) () at Thread.cc:86
> #9  0x2d6ac9d1 in start_thread () from /lib64/libpthread.so.0
> #10 0x2e8b58fd in clone () from /lib64/libc.so.6
> {code}
> I think some inlining here complicates things, what it looks like the "r" is 
> NULL, but it somehow still ends up using r->rr ?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-4207) Crash in HostDB, likely a regression from 5.x

2016-02-23 Thread Leif Hedstrom (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4207?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159283#comment-15159283
 ] 

Leif Hedstrom commented on TS-4207:
---

Why don' you ask [~msekimura] to test it ;)

> Crash in HostDB, likely a regression from 5.x
> -
>
> Key: TS-4207
> URL: https://issues.apache.org/jira/browse/TS-4207
> Project: Traffic Server
>  Issue Type: Bug
>  Components: HostDB
>Reporter: Leif Hedstrom
>Priority: Blocker
>  Labels: crash
> Fix For: 6.2.0
>
>
> We're seeing a new crash in HostDB, which did not occur in 5.3.x:
> {code}
> (gdb) bt
> #0  0x2ac7b2bb in HttpSM::process_hostdb_info(HostDBInfo*) () at 
> ../../iocore/hostdb/P_HostDBProcessor.h:295
> #1  0x2ac88b16 in HttpSM::state_hostdb_lookup(int, void*) () at 
> HttpSM.cc:2126
> #2  0x2ac9713d in HttpSM::main_handler(int, void*) () at 
> HttpSM.cc:2561
> #3  0x2ad7803e in reply_to_cont(Continuation*, HostDBInfo*, bool) () 
> at ../../iocore/eventsystem/I_Continuation.h:153
> #4  0x2ad7eca5 in HostDBContinuation::dnsEvent(int, HostEnt*) () at 
> HostDB.cc:1685
> #5  0x2ad98faf in DNSEntry::postEvent(int, Event*) () at 
> ../../iocore/eventsystem/I_Continuation.h:153
> #6  0x2ae7e420 in EThread::process_event(Event*, int) () at 
> I_Continuation.h:153
> #7  0x2ae7f2ab in EThread::execute() () at UnixEThread.cc:179
> #8  0x2ae7de06 in spawn_thread_internal(void*) () at Thread.cc:86
> #9  0x2d6ac9d1 in start_thread () from /lib64/libpthread.so.0
> #10 0x2e8b58fd in clone () from /lib64/libc.so.6
> {code}
> I think some inlining here complicates things, what it looks like the "r" is 
> NULL, but it somehow still ends up using r->rr ?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3995) "[hcoofsr] conditional request, 200 response, send back 304 if possible [crc=304]" breaks akamaihd.net live streaming

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3995?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159275#comment-15159275
 ] 

ASF GitHub Bot commented on TS-3995:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/330#issuecomment-187811485
  
We talked about this at the github meeting. As a workaround you can adjust 
the Last-Modified with header rewrite.  We feel this is the best solution to 
only change the behavior of Akamai, which is clearly broken.


> "[hcoofsr] conditional request, 200 response, send back 304 if possible 
> [crc=304]" breaks akamaihd.net live streaming
> -
>
> Key: TS-3995
> URL: https://issues.apache.org/jira/browse/TS-3995
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Cache, Core, HTTP
>Affects Versions: 5.3.2
>Reporter: Nikolai Gorchilov
>Assignee: Alan M. Carroll
>  Labels: review
> Fix For: 6.2.0
>
>
> Caching proxy running ATS 5.3.x (5.3.0, 5.3.1, 5.3.2 all fail) with 
> proxy.config.http.cache.when_to_revalidate = 4 breaks akamaihd.net live 
> streaming.
> The actual problem is that ATS rewrites origin response from 200 to 304, due 
> to If-Modified-Since conditional header in client's request. As per ATS logic 
> object is unmodified, but in fact it is. Most probably player and server 
> somehow play with if-modified-since/last-modified headers pair to communicate 
> position in the live stream. What is obvious is that Last-Modified = 
> If-Modified-Since.
> As result, Akamai player keeps repeating the said request, expecting it's 
> 200, but getting 304 thus live video freezes forever, just a few seconds 
> after start.
> IMHO when proxy.config.http.cache.when_to_revalidate = 4, ATS shall not 
> interfere with origin response in this manner.
> Here's a debug log of request and response headers at different states in a 
> single transaction:
> {noformat}
> + Incoming Request +
> -- State Machine Id: 168
> GET 
> http:///z/delayed/indvsa2015_INDVSSATEST1DAY1_1@336263/464_209823ecd2922291-p.bootstrap?g=YCEAMIWDQZQT=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8=3.7.0=aasp-3.7.0.39.44
>  HTTP/1.1
> Host: sshds5-lh.akamaihd.net
> Connection: keep-alive
> User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) 
> AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
> X-Requested-With: ShockwaveFlash/19.0.0.226
> Accept: */*
> DNT: 1
> Referer: http://www.hotstar.com/
> Accept-Encoding: gzip
> Accept-Language: en-US,en;q=0.8,bg;q=0.6
> Cookie: _alid_=PmjLqgcUUqw6TP5gtK/xbg==; 
> hdntl=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8
> If-Modified-Since: Thu, 05 Nov 2015 02:30:28 GMT
> + Proxy's Request +
> -- State Machine Id: 168
> GET 
> /z/delayed/indvsa2015_INDVSSATEST1DAY1_1@336263/464_209823ecd2922291-p.bootstrap?g=YCEAMIWDQZQT=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8=3.7.0=aasp-3.7.0.39.44
>  HTTP/1.1
> Host: sshds5-lh.akamaihd.net
> User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) 
> AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
> X-Requested-With: ShockwaveFlash/19.0.0.226
> Accept: */*
> DNT: 1
> Referer: http://www.hotstar.com/
> Accept-Encoding: gzip
> Accept-Language: en-US,en;q=0.8,bg;q=0.6
> Cookie: _alid_=PmjLqgcUUqw6TP5gtK/xbg==; 
> hdntl=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8
> If-Modified-Since: Thu, 05 Nov 2015 02:30:28 GMT
> + Proxy's Request after hooks +
> -- State Machine Id: 168
> GET 
> /z/delayed/indvsa2015_INDVSSATEST1DAY1_1@336263/464_209823ecd2922291-p.bootstrap?g=YCEAMIWDQZQT=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8=3.7.0=aasp-3.7.0.39.44
>  HTTP/1.1
> Host: sshds5-lh.akamaihd.net
> User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) 
> AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36
> X-Requested-With: ShockwaveFlash/19.0.0.226
> Accept: */*
> DNT: 1
> Referer: http://www.hotstar.com/
> Accept-Encoding: gzip
> Accept-Language: en-US,en;q=0.8,bg;q=0.6
> Cookie: _alid_=PmjLqgcUUqw6TP5gtK/xbg==; 
> hdntl=exp=1446809835~acl=%2f*~data=hdntl~hmac=ebaedb13781605ce7f9f26b84e1346a7d43ecf0dfcc99e6b53e32487565ba3f8
> If-Modified-Since: Thu, 05 Nov 2015 02:30:28 GMT
> + Incoming O.S. Response +
> -- State Machine Id: 168
> HTTP/1.1 200 OK
> Server: AkamaiGHost
> Mime-Version: 1.0
> Content-Type: video/abst
> Content-Length: 122
> 

[jira] [Commented] (TS-3977) Merge cache-key-gen-id plugin

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159244#comment-15159244
 ] 

ASF GitHub Bot commented on TS-3977:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/309#issuecomment-187805696
  
@ftarnell Can you please rebase this?


> Merge cache-key-gen-id plugin
> -
>
> Key: TS-3977
> URL: https://issues.apache.org/jira/browse/TS-3977
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Plugins
>Reporter: Felicity Tarnell
> Fix For: sometime
>
>
> cache-key-genid allows the cache generation id to be read from an on-disk 
> database based on the request domain.  This allows the cache to be cleared 
> with domain-level granularity rather than page-level.
> Incoming PR merges the Torchbox version for 6.0+, which uses the built-in 
> cache generation id instead of modifying the cache url.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3948) crashed at json_out_stat() with sprintf format mismatch

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159237#comment-15159237
 ] 

ASF GitHub Bot commented on TS-3948:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/304#issuecomment-187804291
  
This needs to be investigated more to completely solve this issue.


> crashed at json_out_stat() with sprintf format mismatch
> ---
>
> Key: TS-3948
> URL: https://issues.apache.org/jira/browse/TS-3948
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Masa Sekimura
>Assignee: Masa Sekimura
>  Labels: A, crash
> Fix For: 6.2.0
>
>
> We ran into a core dump with the below stack trace.  Record data_type was 
> RECD_INT(0x1) in RecDumpRecords():RecCore.cc:963 but somehow it became 
> TS_RECORDDATATYPE_STRING(0x3) which caused sprintf format error in 
> json_out_stat():stats_over_http.c:176
> {code}
> (gdb) where
> #0  0x2e7d662e in _IO_default_xsputn_internal () from /lib64/libc.so.6
> #1  0x2e7a732a in vfprintf () from /lib64/libc.so.6
> #2  0x2e861aa0 in __vsnprintf_chk () from /lib64/libc.so.6
> #3  0x2e8619da in __snprintf_chk () from /lib64/libc.so.6
> #4  0x2aaab77f2617 in snprintf (rec_type=, 
> edata=0x2ae56bb16c80, registered=, name= out>, data_type=,
> datum=) at /usr/include/bits/stdio2.h:65
> #5  json_out_stat (rec_type=, edata=0x2ae56bb16c80, 
> registered=, name=, 
> data_type=, datum=)
> at stats_over_http.c:176
> #6  0x2ae46ac5 in RecDumpRecords (rec_type=38, 
> callback=0x2aaab77f2540 , edata=0x2ae56bb16c80) at 
> RecCore.cc:963
> #7  0x2aaab77f2891 in json_out_stats (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:189
> #8  stats_process_write (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:204
> #9  stats_dostuff (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:227
> #10 0x2abc7b1a in PluginVC::process_write_side (this=0x2abca167be20, 
> other_side_call=false) at PluginVC.cc:547
> #11 0x2abc9be5 in PluginVC::main_handler (this=0x2abca167be20, 
> event=, data=0x2aaab2c26840) at PluginVC.cc:208
> #12 0x2ae545b8 in handleEvent (this=0x2aaab23a, e=0x2aaab2c26840, 
> calling_code=1) at I_Continuation.h:145
> #13 EThread::process_event (this=0x2aaab23a, e=0x2aaab2c26840, 
> calling_code=1) at UnixEThread.cc:128
> #14 0x2ae54edb in EThread::execute (this=0x2aaab23a) at 
> UnixEThread.cc:179
> #15 0x2ae5398a in spawn_thread_internal (a=0x2b8124f0) at 
> Thread.cc:85
> #16 0x2c9439d1 in start_thread () from /lib64/libpthread.so.0
> #17 0x2e84a8fd in clone () from /lib64/libc.so.6
> (gdb) f 6
> #6  0x2ae46ac5 in RecDumpRecords (rec_type=38, 
> callback=0x2aaab77f2540 , edata=0x2ae56bb16c80) at 
> RecCore.cc:963
> 963   in RecCore.cc
> (gdb) p rec_type
> $20 = 38
> (gdb) p edata
> $21 = (void *) 0x2ae56bb16c80
> (gdb) p r->registered
> $22 = true
> (gdb) p r->name
> $23 = 0x2b7ba580 "proxy.process.ssl.origin_server_decryption_failed"
> (gdb) p r->data_type
> $24 = RECD_INT
> (gdb) p >data
> $25 = (RecData *) 0x2b76f380
> (gdb)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3948) crashed at json_out_stat() with sprintf format mismatch

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159234#comment-15159234
 ] 

ASF GitHub Bot commented on TS-3948:


Github user PSUdaemon commented on the pull request:

https://github.com/apache/trafficserver/pull/304#issuecomment-187803567
  
Wanted to update, our prod issues did not go away completely, but were 
greatly reduced. So I don't think this is the correct or complete fix, but it's 
related.


> crashed at json_out_stat() with sprintf format mismatch
> ---
>
> Key: TS-3948
> URL: https://issues.apache.org/jira/browse/TS-3948
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Masa Sekimura
>Assignee: Masa Sekimura
>  Labels: A, crash
> Fix For: 6.2.0
>
>
> We ran into a core dump with the below stack trace.  Record data_type was 
> RECD_INT(0x1) in RecDumpRecords():RecCore.cc:963 but somehow it became 
> TS_RECORDDATATYPE_STRING(0x3) which caused sprintf format error in 
> json_out_stat():stats_over_http.c:176
> {code}
> (gdb) where
> #0  0x2e7d662e in _IO_default_xsputn_internal () from /lib64/libc.so.6
> #1  0x2e7a732a in vfprintf () from /lib64/libc.so.6
> #2  0x2e861aa0 in __vsnprintf_chk () from /lib64/libc.so.6
> #3  0x2e8619da in __snprintf_chk () from /lib64/libc.so.6
> #4  0x2aaab77f2617 in snprintf (rec_type=, 
> edata=0x2ae56bb16c80, registered=, name= out>, data_type=,
> datum=) at /usr/include/bits/stdio2.h:65
> #5  json_out_stat (rec_type=, edata=0x2ae56bb16c80, 
> registered=, name=, 
> data_type=, datum=)
> at stats_over_http.c:176
> #6  0x2ae46ac5 in RecDumpRecords (rec_type=38, 
> callback=0x2aaab77f2540 , edata=0x2ae56bb16c80) at 
> RecCore.cc:963
> #7  0x2aaab77f2891 in json_out_stats (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:189
> #8  stats_process_write (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:204
> #9  stats_dostuff (contp=, 
> event=TS_EVENT_VCONN_WRITE_READY, edata=0x2abca167bf70) at 
> stats_over_http.c:227
> #10 0x2abc7b1a in PluginVC::process_write_side (this=0x2abca167be20, 
> other_side_call=false) at PluginVC.cc:547
> #11 0x2abc9be5 in PluginVC::main_handler (this=0x2abca167be20, 
> event=, data=0x2aaab2c26840) at PluginVC.cc:208
> #12 0x2ae545b8 in handleEvent (this=0x2aaab23a, e=0x2aaab2c26840, 
> calling_code=1) at I_Continuation.h:145
> #13 EThread::process_event (this=0x2aaab23a, e=0x2aaab2c26840, 
> calling_code=1) at UnixEThread.cc:128
> #14 0x2ae54edb in EThread::execute (this=0x2aaab23a) at 
> UnixEThread.cc:179
> #15 0x2ae5398a in spawn_thread_internal (a=0x2b8124f0) at 
> Thread.cc:85
> #16 0x2c9439d1 in start_thread () from /lib64/libpthread.so.0
> #17 0x2e84a8fd in clone () from /lib64/libc.so.6
> (gdb) f 6
> #6  0x2ae46ac5 in RecDumpRecords (rec_type=38, 
> callback=0x2aaab77f2540 , edata=0x2ae56bb16c80) at 
> RecCore.cc:963
> 963   in RecCore.cc
> (gdb) p rec_type
> $20 = 38
> (gdb) p edata
> $21 = (void *) 0x2ae56bb16c80
> (gdb) p r->registered
> $22 = true
> (gdb) p r->name
> $23 = 0x2b7ba580 "proxy.process.ssl.origin_server_decryption_failed"
> (gdb) p r->data_type
> $24 = RECD_INT
> (gdb) p >data
> $25 = (RecData *) 0x2b76f380
> (gdb)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3607) ats_pagespeed make error

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3607?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159222#comment-15159222
 ] 

ASF GitHub Bot commented on TS-3607:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/210#issuecomment-187799694
  
@oschaaf can you please work on this and get it committed?


> ats_pagespeed make error
> 
>
> Key: TS-3607
> URL: https://issues.apache.org/jira/browse/TS-3607
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Sebastian Pesman
>Assignee: Otto van der Schaaf
> Fix For: sometime
>
>
> When compiling ats_pagespeed from the current master git 
> /tmp/trafficserver/plugins/experimental/ats_pagespeed the make process 
> results in an error.
> The error:
> ats_pagespeed.cc: In function 'void ats_transform_init(TSCont, 
> TransformCtx*)':
> ats_pagespeed.cc:485:109: error: 'INT64_MAX' was not declared in this scope
>ctx->downstream_vio = TSVConnWrite(downstream_conn, contp, 
> TSIOBufferReaderAlloc(ctx->downstream_buffer), INT64_MAX);
>   
>^
> make: *** [ats_pagespeed.so] Error 1



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (TS-3407) Remove remnants of "h2-14" identifier

2016-02-23 Thread ASF GitHub Bot (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-3407?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159220#comment-15159220
 ] 

ASF GitHub Bot commented on TS-3407:


Github user bryancall commented on the pull request:

https://github.com/apache/trafficserver/pull/228#issuecomment-187799137
  
This pull request is for https://issues.apache.org/jira/browse/TS-3407


> Remove remnants of "h2-14" identifier
> -
>
> Key: TS-3407
> URL: https://issues.apache.org/jira/browse/TS-3407
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: HTTP/2
>Reporter: Leif Hedstrom
>  Labels: incompatible, newbie
> Fix For: 7.0.0
>
>
> With H2 landed on master, and the RFC finalized, we should change the 
> identifier string to just "h2".



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Build failed in Jenkins: tsqa-master #1215

2016-02-23 Thread jenkins
See 

Changes:

[James Peach] Remove unused collapsed_connectio nbuild conditional.

--
[...truncated 1922 lines...]
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass
cls.environment.start()
  File 
"
 line 450, in start
self.__exec_cop()
  File 
"
 line 297, in __exec_cop
tsqa.utils.poll_interfaces(self.hostports)
  File 
"
 line 73, in poll_interfaces
reduce(lambda x, y: str(x) + ',' + str(y), hostports)))
Exception: Timeout waiting for interfaces: ('127.0.0.1', 53767)
 >> begin captured logging << 
root: INFO: Environment prefix is /tmp/tsqa.env.5sU9u7
root: INFO: Environment prefix is /tmp/tsqa.env.yH_WKh
test_https: INFO: cp 

 

root: INFO: Environment prefix is /tmp/tsqa.env.pLngWl
root: INFO: Environment prefix is /tmp/tsqa.env.ZLAcIt
root: INFO: Environment prefix is /tmp/tsqa.env.mZ2s3o
root: INFO: Environment prefix is /tmp/tsqa.env.xgWvSy
root: INFO: Environment prefix is /tmp/tsqa.env.ZHKWuf
root: INFO: Environment prefix is /tmp/tsqa.env.DxTdrc
root: INFO: Environment prefix is /tmp/tsqa.env.RBaaf6
root: INFO: Environment prefix is /tmp/tsqa.env.R9WGYb
root: INFO: Environment prefix is /tmp/tsqa.env.aCDBER
root: INFO: Environment prefix is /tmp/tsqa.env.yvXoWM
root: INFO: Environment prefix is /tmp/tsqa.env.nESYZG
test_origin_min_keep_alive_connection: INFO: socket_server_port = 36702
test_origin_min_keep_alive_connection: INFO: starting the socket server
root: INFO: Environment prefix is /tmp/tsqa.env.DqnDRt
root: INFO: Environment prefix is /tmp/tsqa.env.JB8b1y
tsqa.environment: INFO: Starting build (d133993325226bee52737bbab4e1cbc1): 
configure {'enable-ccache': None, 'enable-experimental-plugins': None, 
'enable-example-plugins': None, 'enable-test-tools': None, 
'enable-linux-native-aio': None, 'disable-dependency-tracking': None}
root: INFO: Environment prefix is /tmp/tsqa.env.zOVUAd
- >> end captured logging << -

==
ERROR: test suite for 
--
Traceback (most recent call last):
  File 
"
 line 209, in run
self.setUp()
  File 
"
 line 292, in setUp
self.setupContext(ancestor)
  File 
"
 line 315, in setupContext
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass
cls.environment.start()
  File 
"
 line 450, in start
self.__exec_cop()
  File 
"
 line 297, in __exec_cop
tsqa.utils.poll_interfaces(self.hostports)
  File 

Build failed in Jenkins: tsqa-master #1214

2016-02-23 Thread jenkins
See 

Changes:

[James Peach] TS-4095: clean up webp_transform build detection

[James Peach] Remove unnecessary DIST_SUBDIRS overrides.

--
[...truncated 1922 lines...]
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass
cls.environment.start()
  File 
"
 line 450, in start
self.__exec_cop()
  File 
"
 line 297, in __exec_cop
tsqa.utils.poll_interfaces(self.hostports)
  File 
"
 line 73, in poll_interfaces
reduce(lambda x, y: str(x) + ',' + str(y), hostports)))
Exception: Timeout waiting for interfaces: ('127.0.0.1', 37720)
 >> begin captured logging << 
root: INFO: Environment prefix is /tmp/tsqa.env.6ZiZrD
root: INFO: Environment prefix is /tmp/tsqa.env.1sBOLQ
test_https: INFO: cp 

 

root: INFO: Environment prefix is /tmp/tsqa.env.3K43Op
root: INFO: Environment prefix is /tmp/tsqa.env.5yfSoO
root: INFO: Environment prefix is /tmp/tsqa.env.uZjY6Z
root: INFO: Environment prefix is /tmp/tsqa.env.5fUj33
root: INFO: Environment prefix is /tmp/tsqa.env.7ISKkK
root: INFO: Environment prefix is /tmp/tsqa.env.6dVeYp
root: INFO: Environment prefix is /tmp/tsqa.env.OMBnqZ
root: INFO: Environment prefix is /tmp/tsqa.env.9yqG18
root: INFO: Environment prefix is /tmp/tsqa.env.JEm7H8
root: INFO: Environment prefix is /tmp/tsqa.env.GHPmwk
root: INFO: Environment prefix is /tmp/tsqa.env.dljrMd
test_origin_min_keep_alive_connection: INFO: socket_server_port = 39611
test_origin_min_keep_alive_connection: INFO: starting the socket server
root: INFO: Environment prefix is /tmp/tsqa.env.YNnwtJ
root: INFO: Environment prefix is /tmp/tsqa.env.c_WOSF
tsqa.environment: INFO: Starting build (d133993325226bee52737bbab4e1cbc1): 
configure {'enable-ccache': None, 'enable-experimental-plugins': None, 
'enable-example-plugins': None, 'enable-test-tools': None, 
'enable-linux-native-aio': None, 'disable-dependency-tracking': None}
root: INFO: Environment prefix is /tmp/tsqa.env.yoE6l4
- >> end captured logging << -

==
ERROR: test suite for 
--
Traceback (most recent call last):
  File 
"
 line 209, in run
self.setUp()
  File 
"
 line 292, in setUp
self.setupContext(ancestor)
  File 
"
 line 315, in setupContext
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass
cls.environment.start()
  File 
"
 line 450, in start
self.__exec_cop()
  File 
"
 line 297, in __exec_cop
tsqa.utils.poll_interfaces(self.hostports)
  File 

Build failed in Jenkins: clang-analyzer #1971

2016-02-23 Thread jenkins
See 

--
Started by upstream project "out_of_tree-master" build number 1494
originally caused by:
 Started by an SCM change
Started by upstream project "in_tree-master" build number 1718
originally caused by:
 Started by an SCM change
Building on master in workspace 

 > /usr/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /usr/bin/git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/trafficserver.git # timeout=10
Cleaning workspace
 > /usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > /usr/bin/git reset --hard # timeout=10
ERROR: Error fetching remote repo 'origin'
ERROR: Error fetching remote repo 'origin'



Build failed in Jenkins: ubuntu_15_10-master » gcc,ubuntu_15_10,debug #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19316 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z 

Build failed in Jenkins: ubuntu_15_10-master » gcc,ubuntu_15_10,spdy #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19327 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f 

Build failed in Jenkins: clang-analyzer #1970

2016-02-23 Thread jenkins
See 

--
Started by upstream project "in_tree-master" build number 1717
originally caused by:
 Started by an SCM change
Building on master in workspace 

 > /usr/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /usr/bin/git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/trafficserver.git # timeout=10
Cleaning workspace
 > /usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > /usr/bin/git reset --hard # timeout=10
ERROR: Error fetching remote repo 'origin'
ERROR: Error fetching remote repo 'origin'



Build failed in Jenkins: clang-analyzer #1969

2016-02-23 Thread jenkins
See 

--
Started by upstream project "out_of_tree-master" build number 1493
originally caused by:
 Started by an SCM change
Building on master in workspace 

 > /usr/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /usr/bin/git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/trafficserver.git # timeout=10
Cleaning workspace
 > /usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > /usr/bin/git reset --hard # timeout=10
ERROR: Error fetching remote repo 'origin'
ERROR: Error fetching remote repo 'origin'



[jira] [Commented] (TS-4095) New cppapi plugin for converting image formats to wepb

2016-02-23 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/TS-4095?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15159141#comment-15159141
 ] 

ASF subversion and git services commented on TS-4095:
-

Commit 6d7c7a1c3fa45c6bf921e19b1a0384743568fc24 in trafficserver's branch 
refs/heads/master from [~jpe...@apache.org]
[ https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=6d7c7a1 ]

TS-4095: clean up webp_transform build detection


> New cppapi plugin for converting image formats to wepb
> --
>
> Key: TS-4095
> URL: https://issues.apache.org/jira/browse/TS-4095
> Project: Traffic Server
>  Issue Type: New Feature
>  Components: CPP API, Plugins
>Reporter: Sandeep Davu
>Assignee: Brian Geffon
>  Labels: review
> Fix For: 6.2.0
>
>
> Support for png and jpeg only.  Webp is a format introduced by google and can 
> retain the quality of the image by reducing the image size.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Build failed in Jenkins: ubuntu_15_10-master » clang,ubuntu_15_10,release #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19324 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: ubuntu_15_10-master » gcc,ubuntu_15_10,release #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19316 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs 

Build failed in Jenkins: ubuntu_15_10-master » clang,ubuntu_15_10,debug #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19317 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs 

Build failed in Jenkins: debian_8-master » gcc,debian_8,debug #599

2016-02-23 Thread jenkins
See 


--
[...truncated 19228 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = 

Build failed in Jenkins: fedora_22-master » gcc,fedora_22,release #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19260 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f 

Build failed in Jenkins: fedora_22-master » gcc,fedora_22,debug #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19259 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c

Build failed in Jenkins: debian_7-master » gcc,debian_7,debug #1727

2016-02-23 Thread jenkins
See 


--
[...truncated 19223 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "regex_revalidate.la" || 

Build failed in Jenkins: ubuntu_15_10-master » clang,ubuntu_15_10,spdy #220

2016-02-23 Thread jenkins
See 


--
[...truncated 19335 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z 

Build failed in Jenkins: ubuntu_14_04-master » gcc,ubuntu_14_04,debug #1733

2016-02-23 Thread jenkins
See 


--
[...truncated 19285 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: debian_8-master » gcc,debian_8,release #599

2016-02-23 Thread jenkins
See 


--
[...truncated 19228 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c

Build failed in Jenkins: fedora_22-master » clang,fedora_22,debug #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19261 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f 

Build failed in Jenkins: ubuntu_14_04-master » gcc,ubuntu_14_04,release #1733

2016-02-23 Thread jenkins
See 


--
[...truncated 19286 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: debian_7-master » gcc,debian_7,hardening #1727

2016-02-23 Thread jenkins
See 


--
[...truncated 19228 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: fedora_22-master » spdy,fedora_22,release #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19260 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f 

Build failed in Jenkins: centos_7-master » gcc,centos_7,debug #1479

2016-02-23 Thread jenkins
See 


--
[...truncated 19220 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "regex_revalidate.la" || 

Build failed in Jenkins: centos_7-master » gcc,centos_7,release #1479

2016-02-23 Thread jenkins
See 


--
[...truncated 19223 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs

Build failed in Jenkins: fedora_22-master » clang,fedora_22,release #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19269 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f 

Build failed in Jenkins: debian_8-master » gcc,debian_8,hardening #599

2016-02-23 Thread jenkins
See 


--
[...truncated 19230 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f 

Build failed in Jenkins: ubuntu_12_04-master » gcc,ubuntu_12_04,release #1712

2016-02-23 Thread jenkins
See 


--
[...truncated 19232 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: debian_7-master » gcc,debian_7,release #1727

2016-02-23 Thread jenkins
See 


--
[...truncated 19226 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs

Build failed in Jenkins: fedora_22-master » spdy,fedora_22,debug #606

2016-02-23 Thread jenkins
See 


--
[...truncated 19260 lines...]
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in hipes
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in inliner
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in metalink
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in multiplexer
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcache
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in memcached_remap
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
'
Making distclean in regex_revalidate
make[3]: Entering directory 
'
rm -rf .libs _libs
test -z "regex_revalidate.la" || rm -f regex_revalidate.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo

Build failed in Jenkins: centos_6-master » gcc,centos_6,release #1723

2016-02-23 Thread jenkins
See 


--
[...truncated 19261 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs

Build failed in Jenkins: freebsd_10-master » clang,freebsd_10,debug #721

2016-02-23 Thread jenkins
See 


--
[...truncated 18372 lines...]
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in hipes
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in inliner
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in metalink
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in multiplexer
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in memcache
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in memcached_remap
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in regex_revalidate
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z 

Build failed in Jenkins: ubuntu_12_04-master » gcc,ubuntu_12_04,debug #1712

2016-02-23 Thread jenkins
See 


--
[...truncated 19229 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 

Build failed in Jenkins: tsqa-master #1213

2016-02-23 Thread jenkins
See 

Changes:

[Phil Sorber] TS-4211: Make freelist_new cleaner so we can debug better.

[Kit Chan] TS-4095: New cppapi plugin for converting images formats to webp. 
This closes #393

[amc] TS-4201: call cont->handleEvent with OneWayTunnel object

[Leif Hedstrom] TS-4158 Adds appropriate releases of URL MLocs

[James Peach] Remove unused define REC_PIPE_NAME.

[masaori] TS-4213: Remove unused arguments from frame_handlers

[Sudheer Vinukonda] [TS-4222] Add check to see if 
SSLConfigParams::load_ssl_file_cb is initialized.

[James Peach] TS-4095: Fix the dependency check for the webp_transform plugin

--
[...truncated 1922 lines...]
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass
cls.environment.start()
  File 
"
 line 450, in start
self.__exec_cop()
  File 
"
 line 297, in __exec_cop
tsqa.utils.poll_interfaces(self.hostports)
  File 
"
 line 73, in poll_interfaces
reduce(lambda x, y: str(x) + ',' + str(y), hostports)))
Exception: Timeout waiting for interfaces: ('127.0.0.1', 58289)
 >> begin captured logging << 
root: INFO: Environment prefix is /tmp/tsqa.env.H95Pps
root: INFO: Environment prefix is /tmp/tsqa.env.K_s_HI
test_https: INFO: cp 

 

root: INFO: Environment prefix is /tmp/tsqa.env.clm3Em
root: INFO: Environment prefix is /tmp/tsqa.env.J4pCOn
root: INFO: Environment prefix is /tmp/tsqa.env.E68jrW
root: INFO: Environment prefix is /tmp/tsqa.env.uUcxxQ
root: INFO: Environment prefix is /tmp/tsqa.env.pHGUPG
root: INFO: Environment prefix is /tmp/tsqa.env.eu5oFF
root: INFO: Environment prefix is /tmp/tsqa.env.fpPzRi
root: INFO: Environment prefix is /tmp/tsqa.env.vPlhjW
root: INFO: Environment prefix is /tmp/tsqa.env.rAlt2s
root: INFO: Environment prefix is /tmp/tsqa.env.mU1uzR
root: INFO: Environment prefix is /tmp/tsqa.env.BPEYSO
test_origin_min_keep_alive_connection: INFO: socket_server_port = 48297
test_origin_min_keep_alive_connection: INFO: starting the socket server
root: INFO: Environment prefix is /tmp/tsqa.env.L_cXWl
root: INFO: Environment prefix is /tmp/tsqa.env.62o9QX
tsqa.environment: INFO: Starting build (d133993325226bee52737bbab4e1cbc1): 
configure {'enable-ccache': None, 'enable-experimental-plugins': None, 
'enable-example-plugins': None, 'enable-test-tools': None, 
'enable-linux-native-aio': None, 'disable-dependency-tracking': None}
root: INFO: Environment prefix is /tmp/tsqa.env.b8D5Fu
- >> end captured logging << -

==
ERROR: test suite for 
--
Traceback (most recent call last):
  File 
"
 line 209, in run
self.setUp()
  File 
"
 line 292, in setUp
self.setupContext(ancestor)
  File 
"
 line 315, in setupContext
try_run(context, names)
  File 
"
 line 471, in try_run
return func()
  File 
"
 line 150, in setUpClass
super(DynamicHTTPEndpointCase, cls).setUpClass()
  File 
"
 line 86, in setUpClass

Build failed in Jenkins: freebsd_10-master » clang,freebsd_10,release #721

2016-02-23 Thread jenkins
See 


--
[...truncated 18372 lines...]
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in hipes
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in inliner
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in metalink
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in multiplexer
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in memcache
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in memcached_remap
gmake[3]: Entering directory 
'
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
gmake[3]: Leaving directory 
'
Making distclean in regex_revalidate
gmake[3]: Entering directory 
'
rm -rf 

Build failed in Jenkins: centos_6-master » gcc,centos_6,debug #1723

2016-02-23 Thread jenkins
See 


--
[...truncated 19260 lines...]
rm -rf .libs _libs
test -z "header_normalize.la" || rm -f header_normalize.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/header_normalize" || test -z "" || 
rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in hipes
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "hipes.la" || rm -f hipes.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/hipes" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in inliner
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "inliner.la" || rm -f inliner.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/inliner" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in metalink
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "metalink.la" || rm -f metalink.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/metalink" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in multiplexer
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "multiplexer.la" || rm -f multiplexer.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/multiplexer" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcache
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "tsmemcache.la" || rm -f tsmemcache.la
rm -f ./so_locations
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcache" || test -z "" || rm -f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in memcached_remap
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "" || rm -f 
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z "" || rm -f 
test . = "../../../../plugins/experimental/memcached_remap" || test -z "" || rm 
-f 
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -rf ./.deps
rm -f Makefile
make[3]: Leaving directory 
`
Making distclean in regex_revalidate
make[3]: Entering directory 
`
rm -rf .libs _libs
test -z "regex_revalidate.la" || 

Build failed in Jenkins: clang-format #605

2016-02-23 Thread jenkins
See 

Changes:

[Phil Sorber] TS-4211: Make freelist_new cleaner so we can debug better.

[Kit Chan] TS-4095: New cppapi plugin for converting images formats to webp. 
This closes #393

[amc] TS-4201: call cont->handleEvent with OneWayTunnel object

[Leif Hedstrom] TS-4158 Adds appropriate releases of URL MLocs

[James Peach] Remove unused define REC_PIPE_NAME.

[masaori] TS-4213: Remove unused arguments from frame_handlers

[Sudheer Vinukonda] [TS-4222] Add check to see if 
SSLConfigParams::load_ssl_file_cb is initialized.

[James Peach] TS-4095: Fix the dependency check for the webp_transform plugin

--
[...truncated 494 lines...]
checking for mysql/mysql.h... no
checking for mysql_info in -lmysqlclient... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating cmd/Makefile
config.status: creating cmd/traffic_cop/Makefile
config.status: creating cmd/traffic_crashlog/Makefile
config.status: creating cmd/traffic_ctl/Makefile
config.status: creating cmd/traffic_layout/Makefile
config.status: creating cmd/traffic_line/Makefile
config.status: creating cmd/traffic_manager/Makefile
config.status: creating cmd/traffic_top/Makefile
config.status: creating cmd/traffic_via/Makefile
config.status: creating cmd/traffic_wccp/Makefile
config.status: creating doc/Makefile
config.status: creating example/Makefile
config.status: creating iocore/Makefile
config.status: creating iocore/aio/Makefile
config.status: creating iocore/cache/Makefile
config.status: creating iocore/cluster/Makefile
config.status: creating iocore/dns/Makefile
config.status: creating iocore/eventsystem/Makefile
config.status: creating iocore/hostdb/Makefile
config.status: creating iocore/net/Makefile
config.status: creating iocore/utils/Makefile
config.status: creating lib/Makefile
config.status: creating lib/bindings/Makefile
config.status: creating lib/perl/Makefile
config.status: creating lib/perl/lib/Apache/TS.pm
config.status: creating lib/records/Makefile
config.status: creating lib/ts/Makefile
config.status: creating lib/ts/apidefs.h
config.status: creating lib/ts/ink_config.h
config.status: creating lib/tsconfig/Makefile
config.status: creating lib/wccp/Makefile
config.status: creating mgmt/Makefile
config.status: creating mgmt/api/Makefile
config.status: creating mgmt/api/include/Makefile
config.status: creating mgmt/cluster/Makefile
config.status: creating mgmt/utils/Makefile
config.status: creating plugins/Makefile
config.status: creating plugins/cacheurl/Makefile
config.status: creating plugins/conf_remap/Makefile
config.status: creating plugins/gzip/Makefile
config.status: creating plugins/header_rewrite/Makefile
config.status: creating plugins/healthchecks/Makefile
config.status: creating plugins/libloader/Makefile
config.status: creating plugins/regex_remap/Makefile
config.status: creating plugins/stats_over_http/Makefile
config.status: creating plugins/tcpinfo/Makefile
config.status: creating proxy/Makefile
config.status: creating proxy/api/ts/Makefile
config.status: creating proxy/config/Makefile
config.status: creating proxy/config/body_factory/Makefile
config.status: creating proxy/config/body_factory/default/Makefile
config.status: creating proxy/config/records.config.default
config.status: creating proxy/config/storage.config.default
config.status: creating proxy/congest/Makefile
config.status: creating proxy/hdrs/Makefile
config.status: creating proxy/http/Makefile
config.status: creating proxy/http/remap/Makefile
config.status: creating proxy/http2/Makefile
config.status: creating proxy/logging/Makefile
config.status: creating proxy/shared/Makefile
config.status: creating proxy/spdy/Makefile
config.status: creating rc/Makefile
config.status: creating rc/trafficserver
config.status: creating rc/trafficserver.conf
config.status: creating rc/trafficserver.service
config.status: creating rc/trafficserver.xml
config.status: creating tools/Makefile
config.status: creating tools/trafficserver.pc
config.status: creating tools/tsxs
config.status: creating lib/ink_autoconf.h
config.status: executing depfiles commands
config.status: executing libtool commands
configure: Build option summary:
CC: cc
CXX:c++
CPP:cc -E
CFLAGS: -std=gnu99 -g -pipe -Wall -O3 
-feliminate-unused-debug-symbols -fno-strict-aliasing -mcx16
CXXFLAGS:-std=c++11 -g -pipe -Wall -O3 
-feliminate-unused-debug-symbols -fno-strict-aliasing -Wno-invalid-offsetof 
-mcx16
CPPFLAGS:   -Dlinux -D_LARGEFILE64_SOURCE=1 
-D_COMPILE64BIT_SOURCE=1 -D_GNU_SOURCE -D_REENTRANT -D__STDC_LIMIT_MACROS=1 
-D__STDC_FORMAT_MACROS=1 -DOPENSSL_NO_SSL_INTERN -I/usr/include/libxml2
LDFLAGS: 
SHARED_CFLAGS:  -fPIC
SHARED_CXXFLAGS:-fPIC

Build failed in Jenkins: clang-analyzer #1968

2016-02-23 Thread jenkins
See 

--
Started by upstream project "out_of_tree-master" build number 1492
originally caused by:
 Started by an SCM change
Started by upstream project "in_tree-master" build number 1716
originally caused by:
 Started by an SCM change
Building on master in workspace 

 > /usr/bin/git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > /usr/bin/git config remote.origin.url 
 > https://git-wip-us.apache.org/repos/asf/trafficserver.git # timeout=10
Cleaning workspace
 > /usr/bin/git rev-parse --verify HEAD # timeout=10
Resetting working tree
 > /usr/bin/git reset --hard # timeout=10
ERROR: Error fetching remote repo 'origin'
ERROR: Error fetching remote repo 'origin'



[jira] [Updated] (TS-4223) new config will not reload success ERROR: [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)

2016-02-23 Thread bettydramit (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

bettydramit updated TS-4223:

Priority: Critical  (was: Major)

> new config will not reload success  ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)
> -
>
> Key: TS-4223
> URL: https://issues.apache.org/jira/browse/TS-4223
> Project: Traffic Server
>  Issue Type: Bug
>Affects Versions: 6.1.1
>Reporter: bettydramit
>Priority: Critical
>
> update to 6.1.1
> when exec traffic_ctl config reload
> lot of  [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4) at 
> manager.log 
> traffic.out
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> new config will not reload success



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TS-4223) new config will not reload success ERROR: [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)

2016-02-23 Thread bettydramit (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

bettydramit updated TS-4223:

Summary: new config will not reload success  ERROR: 
[LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)  
(was: [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
[LocalManager::pollMgmtProcessServer] select failed or was interrupted (4))

> new config will not reload success  ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)
> -
>
> Key: TS-4223
> URL: https://issues.apache.org/jira/browse/TS-4223
> Project: Traffic Server
>  Issue Type: Bug
>Affects Versions: 6.1.1
>Reporter: bettydramit
>
> update to 6.1.1
> when exec traffic_ctl config reload
> lot of  [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4) at 
> manager.log 
> traffic.out
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> new config will not reload success



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (TS-4223) [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)

2016-02-23 Thread bettydramit (JIRA)

 [ 
https://issues.apache.org/jira/browse/TS-4223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

bettydramit updated TS-4223:

Description: 
update to 6.1.1


when exec traffic_ctl config reload

lot of  [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
[LocalManager::pollMgmtProcessServer] select failed or was interrupted (4) at 
manager.log 

traffic.out
traffic_ctl: configuration reload request failed: [13] Operation not permitted.
traffic_ctl: configuration reload request failed: [13] Operation not permitted.
traffic_ctl: configuration reload request failed: [13] Operation not permitted.


new config will not reload success

  was:
update to 6.1.1


when exec traffic_ctl config reload

lot of  [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
[LocalManager::pollMgmtProcessServer] select failed or was interrupted (4) at 
manager.log 

traffic.out
traffic_ctl: configuration reload request failed: [13] Operation not permitted.
traffic_ctl: configuration reload request failed: [13] Operation not permitted.
traffic_ctl: configuration reload request failed: [13] Operation not permitted.


> [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4)
> 
>
> Key: TS-4223
> URL: https://issues.apache.org/jira/browse/TS-4223
> Project: Traffic Server
>  Issue Type: Bug
>Affects Versions: 6.1.1
>Reporter: bettydramit
>
> update to 6.1.1
> when exec traffic_ctl config reload
> lot of  [Feb 23 14:20:13.554] Manager {0x7f4216adb840} ERROR: 
> [LocalManager::pollMgmtProcessServer] select failed or was interrupted (4) at 
> manager.log 
> traffic.out
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> traffic_ctl: configuration reload request failed: [13] Operation not 
> permitted.
> new config will not reload success



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)