[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Dzmitry Markovich (JIRA)

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

Dzmitry Markovich commented on TS-3312:
---

[~amc], [~zwoop] - thank you for clarifying. Now it is clear to me. I will 
prepare a new patch and update this ticket.

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Created] (TS-3441) proxy.config.http.down_server.cache_time not honored?

2015-03-12 Thread Thomas Jackson (JIRA)
Thomas Jackson created TS-3441:
--

 Summary: proxy.config.http.down_server.cache_time not honored?
 Key: TS-3441
 URL: https://issues.apache.org/jira/browse/TS-3441
 Project: Traffic Server
  Issue Type: Bug
Reporter: Thomas Jackson


While investigating TS-3440 (and writing the subsequent test cases) I have yet 
to find a case where I can trigger this feature (hostdb caching a real as 
down). In the case of TS-3440 we know that the real is unavailable, but we end 
up re-connecting anyways. Regardless of the broken re-connect logic we 
shouldn't re-connect since hostdb should have marked the real as down and 
cached it for 300s.



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


[jira] [Updated] (TS-3439) Chunked responses don't honor keep-alive

2015-03-12 Thread Thomas Jackson (JIRA)

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

Thomas Jackson updated TS-3439:
---
Description: 
If you have ATS configured with keep_alive out disabled, and an origin that 
responds with transfer-encoding chunked ATS puts the connection on the 
keepalive pool after the transfer is finished. Since keep_alive_out is disabled 
the request contains a connection close header. This means that we now have a 
race condition between the origin actually closing the tcp session (assuming 
its well behaved) and ATS re-using that keep-alive session (which it shouldn't 
have kept).

This means not only are we disobeying the configuration (which specified no 
keep-alive) but we are "breaking" connections-- as they will 502 (since the 
tunnel will be shutdown).

test case: 
https://github.com/jacksontj/trafficserver/commit/e221e91ad6466ef840f74a1016b8d51c821eb1e9#diff-ed49610150c2617c50f28a047a07c126R130

  was:
If you have ATS configured with keep_alive out disabled, and an origin that 
responds with transfer-encoding chunked ATS puts the connection on the 
keepalive pool after the transfer is finished. Since keep_alive_out is disabled 
the request contains a connection close header. This means that we now have a 
race condition between the origin actually closing the tcp session (assuming 
its well behaved) and ATS re-using that keep-alive session (which it shouldn't 
have kept).

This means not only are we disobeying the configuration (which specified no 
keep-alive) but we are "breaking" connections-- as they will 502 (since the 
tunnel will be shutdown).


> Chunked responses don't honor keep-alive
> 
>
> Key: TS-3439
> URL: https://issues.apache.org/jira/browse/TS-3439
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Thomas Jackson
>
> If you have ATS configured with keep_alive out disabled, and an origin that 
> responds with transfer-encoding chunked ATS puts the connection on the 
> keepalive pool after the transfer is finished. Since keep_alive_out is 
> disabled the request contains a connection close header. This means that we 
> now have a race condition between the origin actually closing the tcp session 
> (assuming its well behaved) and ATS re-using that keep-alive session (which 
> it shouldn't have kept).
> This means not only are we disobeying the configuration (which specified no 
> keep-alive) but we are "breaking" connections-- as they will 502 (since the 
> tunnel will be shutdown).
> test case: 
> https://github.com/jacksontj/trafficserver/commit/e221e91ad6466ef840f74a1016b8d51c821eb1e9#diff-ed49610150c2617c50f28a047a07c126R130



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


[jira] [Created] (TS-3440) Connect_retries re-connects even if request made it to origin

2015-03-12 Thread Thomas Jackson (JIRA)
Thomas Jackson created TS-3440:
--

 Summary: Connect_retries re-connects even if request made it to 
origin
 Key: TS-3440
 URL: https://issues.apache.org/jira/browse/TS-3440
 Project: Traffic Server
  Issue Type: Bug
Reporter: Thomas Jackson


While trying to workaround TS-3439 I decided to test out the connect retries 
option. During testing I found a case where it should not retry where it is.

The scenario is as follows:
- ATS makes a connection to an origin
- the origin acks the entire request
- the origin starts to send back a response (lets say first line of the header)
- the origin sends an RST

In this scenario ATS will re-connect to the origin, which is bad since we have 
already sent the request (and we aren't sure if the URL is re-entrant).



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


[jira] [Updated] (TS-3440) Connect_retries re-connects even if request made it to origin

2015-03-12 Thread Thomas Jackson (JIRA)

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

Thomas Jackson updated TS-3440:
---
Description: 
While trying to workaround TS-3439 I decided to test out the connect retries 
option. During testing I found a case where it should not retry where it is.

The scenario is as follows:
- ATS makes a connection to an origin
- the origin acks the entire request
- the origin starts to send back a response (lets say first line of the header)
- the origin sends an RST

In this scenario ATS will re-connect to the origin, which is bad since we have 
already sent the request (and we aren't sure if the URL is re-entrant).

Test case: 
https://github.com/jacksontj/trafficserver/commit/28059ccb93f9fb173792aeebf90062882dfdf9d5#diff-06f9ddbe6cc45d76ebb2cb21479dc805R182

  was:
While trying to workaround TS-3439 I decided to test out the connect retries 
option. During testing I found a case where it should not retry where it is.

The scenario is as follows:
- ATS makes a connection to an origin
- the origin acks the entire request
- the origin starts to send back a response (lets say first line of the header)
- the origin sends an RST

In this scenario ATS will re-connect to the origin, which is bad since we have 
already sent the request (and we aren't sure if the URL is re-entrant).


> Connect_retries re-connects even if request made it to origin
> -
>
> Key: TS-3440
> URL: https://issues.apache.org/jira/browse/TS-3440
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Thomas Jackson
>
> While trying to workaround TS-3439 I decided to test out the connect retries 
> option. During testing I found a case where it should not retry where it is.
> The scenario is as follows:
> - ATS makes a connection to an origin
> - the origin acks the entire request
> - the origin starts to send back a response (lets say first line of the 
> header)
> - the origin sends an RST
> In this scenario ATS will re-connect to the origin, which is bad since we 
> have already sent the request (and we aren't sure if the URL is re-entrant).
> Test case: 
> https://github.com/jacksontj/trafficserver/commit/28059ccb93f9fb173792aeebf90062882dfdf9d5#diff-06f9ddbe6cc45d76ebb2cb21479dc805R182



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


[jira] [Commented] (TS-3440) Connect_retries re-connects even if request made it to origin

2015-03-12 Thread ASF GitHub Bot (JIRA)

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

ASF GitHub Bot commented on TS-3440:


GitHub user jacksontj opened a pull request:

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

Tests for TS-3440 and TS-3439



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

$ git pull https://github.com/jacksontj/trafficserver master

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

https://github.com/apache/trafficserver/pull/179.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 #179


commit 28059ccb93f9fb173792aeebf90062882dfdf9d5
Author: Thomas Jackson 
Date:   2015-03-13T02:06:05Z

Add tests for connect_attempts within (retries for connection to origin)

commit e221e91ad6466ef840f74a1016b8d51c821eb1e9
Author: Thomas Jackson 
Date:   2015-03-13T02:28:26Z

Add initial chunked encoding tests




> Connect_retries re-connects even if request made it to origin
> -
>
> Key: TS-3440
> URL: https://issues.apache.org/jira/browse/TS-3440
> Project: Traffic Server
>  Issue Type: Bug
>Reporter: Thomas Jackson
>
> While trying to workaround TS-3439 I decided to test out the connect retries 
> option. During testing I found a case where it should not retry where it is.
> The scenario is as follows:
> - ATS makes a connection to an origin
> - the origin acks the entire request
> - the origin starts to send back a response (lets say first line of the 
> header)
> - the origin sends an RST
> In this scenario ATS will re-connect to the origin, which is bad since we 
> have already sent the request (and we aren't sure if the URL is re-entrant).



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


[jira] [Created] (TS-3439) Chunked responses don't honor keep-alive

2015-03-12 Thread Thomas Jackson (JIRA)
Thomas Jackson created TS-3439:
--

 Summary: Chunked responses don't honor keep-alive
 Key: TS-3439
 URL: https://issues.apache.org/jira/browse/TS-3439
 Project: Traffic Server
  Issue Type: Bug
Reporter: Thomas Jackson


If you have ATS configured with keep_alive out disabled, and an origin that 
responds with transfer-encoding chunked ATS puts the connection on the 
keepalive pool after the transfer is finished. Since keep_alive_out is disabled 
the request contains a connection close header. This means that we now have a 
race condition between the origin actually closing the tcp session (assuming 
its well behaved) and ATS re-using that keep-alive session (which it shouldn't 
have kept).

This means not only are we disobeying the configuration (which specified no 
keep-alive) but we are "breaking" connections-- as they will 502 (since the 
tunnel will be shutdown).



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


Build failed in Jenkins: debian_6-master » gcc,debian_6,release #831

2015-03-12 Thread jenkins
See 


--
[...truncated 7166 lines...]
*** TEST 104 *** STARTING ***
*** TEST 104 *** PASSED ***
*** TEST 105 *** STARTING ***
*** TEST 105 *** PASSED ***
*** TEST 106 *** STARTING ***
*** TEST 106 *** PASSED ***
*** TEST 107 *** STARTING ***
*** TEST 107 *** PASSED ***
*** TEST 108 *** STARTING ***
*** TEST 108 *** PASSED ***
*** TEST 109 *** STARTING ***
*** TEST 109 *** PASSED ***
*** TEST 110 *** STARTING ***
*** TEST 110 *** PASSED ***
*** TEST 111 *** STARTING ***
*** TEST 111 *** PASSED ***
*** TEST 112 *** STARTING ***
*** TEST 112 *** PASSED ***
*** TEST 113 *** STARTING ***
*** TEST 113 *** PASSED ***
*** TEST 114 *** STARTING ***
*** TEST 114 *** PASSED ***
*** TEST 115 *** STARTING ***
*** TEST 115 *** PASSED ***
*** TEST 116 *** STARTING ***
*** TEST 116 *** PASSED ***
*** TEST 117 *** STARTING ***
*** TEST 117 *** PASSED ***
*** TEST 118 *** STARTING ***
*** TEST 118 *** PASSED ***
*** TEST 119 *** STARTING ***
*** TEST 119 *** PASSED ***
*** TEST 120 *** STARTING ***
*** TEST 120 *** PASSED ***
*** TEST 121 *** STARTING ***
*** TEST 121 *** PASSED ***
*** TEST 122 *** STARTING ***
*** TEST 122 *** PASSED ***
*** TEST 123 *** STARTING ***
*** TEST 123 *** PASSED ***
*** TEST 124 *** STARTING ***
*** TEST 124 *** PASSED ***
*** TEST 125 *** STARTING ***
*** TEST 125 *** PASSED ***
*** TEST 126 *** STARTING ***
*** TEST 126 *** PASSED ***
*** TEST 127 *** STARTING ***
*** TEST 127 *** PASSED ***
*** TEST 128 *** STARTING ***
*** TEST 128 *** PASSED ***
*** TEST 129 *** STARTING ***
*** TEST 129 *** PASSED ***
*** TEST 130 *** STARTING ***
*** TEST 130 *** PASSED ***
*** TEST 131 *** STARTING ***
*** TEST 131 *** PASSED ***
*** TEST 132 *** STARTING ***
*** TEST 132 *** PASSED ***
[SDK_API_TSTextLog] TSTextLogObjectDestroy : [TestCase1] <> { ok }
[SDK_API_TSTextLog] TSTextLogObject : [TestCase1] <> { ok }
*** TEST 133 *** STARTING ***
*** TEST 133 *** PASSED ***
*** TEST 134 *** STARTING ***
[SDK_API_TSThread] TSThreadCreate : [TestCase2] <> { ok }
*** TEST 134 *** PASSED ***
*** TEST 135 *** STARTING ***
*** TEST 135 *** PASSED ***
*** TEST 136 *** STARTING ***
*** TEST 136 *** PASSED ***
*** TEST 137 *** STARTING ***
*** TEST 137 *** PASSED ***
*** TEST 138 *** STARTING ***
*** TEST 138 *** PASSED ***
*** TEST 139 *** STARTING ***
*** TEST 139 *** PASSED ***
*** TEST 140 *** STARTING ***
*** TEST 140 *** PASSED ***
*** TEST 141 *** STARTING ***
*** TEST 141 *** PASSED ***
*** TEST 142 *** STARTING ***
*** TEST 142 *** PASSED ***
*** TEST 143 *** STARTING ***
*** TEST 143 *** PASSED ***
*** TEST 144 *** STARTING ***
*** TEST 144 *** PASSED ***
*** TEST 145 *** STARTING ***
*** TEST 145 *** PASSED ***
*** TEST 146 *** STARTING ***
*** TEST 146 *** PASSED ***
*** TEST 147 *** STARTING ***
*** TEST 147 *** PASSED ***
*** TEST 148 *** STARTING ***
*** TEST 148 *** PASSED ***
*** TEST 149 *** STARTING ***
*** TEST 149 *** PASSED ***
*** TEST 150 *** STARTING ***
*** TEST 150 *** PASSED ***
*** TEST 151 *** STARTING ***
*** TEST 151 *** PASSED ***
*** TEST 152 *** STARTING ***
*** TEST 152 *** PASSED ***
*** TEST 153 *** STARTING ***
*** TEST 153 *** PASSED ***
*** TEST 154 *** STARTING ***
*** TEST 154 *** PASSED ***
*** TEST 155 *** STARTING ***
*** TEST 155 *** PASSED ***
*** TEST 156 *** STARTING ***
*** TEST 156 *** PASSED ***
*** TEST 157 *** STARTING ***
*** TEST 157 *** PASSED ***
*** TEST 158 *** STARTING ***
*** TEST 158 *** PASSED ***
*** TEST 159 *** STARTING ***
*** TEST 159 *** PASSED ***
*** TEST 160 *** STARTING ***
*** TEST 160 *** PASSED ***
*** TEST 161 *** STARTING ***
*** TEST 161 *** PASSED ***
*** TEST 162 *** STARTING ***
*** TEST 162 *** PASSED ***
*** TEST 163 *** STARTING ***
*** TEST 163 *** PASSED ***
*** TEST 164 *** STARTING ***
*** TEST 164 *** PASSED ***
*** TEST 165 *** STARTING ***
*** TEST 165 *** PASSED ***
*** TEST 166 *** STARTING ***
*** TEST 166 *** PASSED ***
*** TEST 167 *** STARTING ***
*** TEST 167 *** PASSED ***
*** TEST 168 *** STARTING ***
*** TEST 168 *** PASSED ***
*** TEST 169 *** STARTING ***
*** TEST 169 *** PASSED ***
*** TEST 170 *** STARTING ***
*** TEST 170 *** PASSED ***
*** TEST 171 *** STARTING ***
*** TEST 171 *** PASSED ***
*** TEST 172 *** STARTING ***
*** TEST 172 *** PASSED ***
Tests Passed: 172
Tests Failed: 0
REGRESSION_RESULT PARENTSELECTION:  PASSED
REGRESSION TEST PVC started
[SDK_API_TSContSchedule] TSContSchedule : [TestCase2] <> { ok }
[SDK_API_TSCache] TSCacheRemove : [TestCase1] <> { ok }
[SDK_API_TSCache] TSCacheRead : [TestCase2] <> { ok }
RPRINT DNS: host www.apple.com [e3191.dscc.akamaiedge.net] = 172.226.45.15
RPRINT DNS: host www.ibm.com [e2898.x.akamaiedge.net] = 172.233.26.23
RPRINT DNS: host www.microsoft.com [e10088.dscb.akamaiedge.net] = 172.233.22.36
RPRINT DNS: host www.coke.com [a1128.g2.akamai.net] = 23.14.84.42
REGRESSION_RESULT SDK_API_TS

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #363

2015-03-12 Thread jenkins
See 


--
[...truncated 4208 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #280

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #308

2015-03-12 Thread jenkins
See 


--
[...truncated 3580 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #362

2015-03-12 Thread jenkins
See 


--
[...truncated 4207 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #279

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #307

2015-03-12 Thread jenkins
See 


--
[...truncated 3580 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3312:
---

That's correct. They way the overridable configs works is to copy the entire 
oride struct from the global to the txn member of the HttpSM. In the original 
patch it always used the global , it never even had a chance to use the txn 
copy.





> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Alan M. Carroll (JIRA)

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

Alan M. Carroll commented on TS-3312:
-

If Dzmitry is confused then others will be as well.

The issue is the configuration overrides work by setting a value in a 
substructure of {{HttpSM}}. In this case the code is located in the 
HttpSessionManager release logic. By that point the {{HttpSM}} no longer exists 
and therefore any overrides set during the transaction don't exist either and 
can't be used. Effectively this means only the global from {{records.config}} 
will ever be used. That is, the value is de facto not overriddable even though 
the API lets you change it. The solution suggested is to wait until the last 
possible moment and then, just before the {{HttpSM}} evaporates, copy the value 
over to the {{HttpServerSession}} to be used which makes it overriddable.

What this value controls in this context is a limit on how long the server 
session will be held in the session pool. The use case is to be able to control 
that based on the server by tweaking this value during the transaction.

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


Jenkins build is back to normal : tsqa-master #232

2015-03-12 Thread jenkins
See 



Re: [jira] [Comment Edited] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom
You are using the global configuration to access an overridable configuration. 
Which means, someone would think they are overriding the configuration, buy get 
the global configuration value from records.config anyways.

I spoke with amc about this and agreed that it should be possible to implement 
this in a way that retains the overridable property of the configuration.

I hope that makes sense?



> On Mar 12, 2015, at 4:27 PM, Dzmitry Markovich (JIRA)  wrote:
> 
> 
>[ 
> https://issues.apache.org/jira/browse/TS-3312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14359547#comment-14359547
>  ] 
> 
> Dzmitry Markovich edited comment on TS-3312 at 3/12/15 10:26 PM:
> -
> 
> Agree with HttpConfig::release. Maybe I'm missing something, but I don see 
> how it breaks "previously overridable configuration into a non-overridable 
> one"? I'll talk to Alan offline and will update this ticket...
> 
> 
> was (Author: dmich):
> Agree with HttpConfig::release. Maybe I'm missing something, but I don see 
> how it breaks "previously overridable configuration into a non-overridable 
> one"? I'll talk to Alan offline...
> 
>> KA timeout to origin does not seem to honor configurations
>> --
>> 
>>Key: TS-3312
>>URL: https://issues.apache.org/jira/browse/TS-3312
>>Project: Traffic Server
>> Issue Type: Bug
>> Components: Core, HTTP
>>   Reporter: Leif Hedstrom
>>   Assignee: Brian Geffon
>>Fix For: 5.3.0
>> 
>>Attachments: keep_alive_timeout.diff
>> 
>> 
>> Doing some basic testing, with the following settings:
>> {code}
>> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
>> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
>> {code}
>> I see ATS timing out the origin sessions after 30sec, with a 
>> {code}
>> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
>> {code}
>> What's also interesting, after I made a config change per Geffon's 
>> suggestion:
>> {code}
>> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
>> {code}
>> I see the following in the diagnostic trace:
>> {code}
>> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
>> session] session placed into shared pool
>> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
>> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
>> reseting timeout to maintain minimum number of connections
>> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
>> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
>> reseting timeout to maintain minimum number of connections
>> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
>> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
>> {code}
>> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
>> I first though it was the origin that closed the connection, but from what I 
>> could tell, the timeout on the origin was set to 60s.
> 
> 
> 
> --
> This message was sent by Atlassian JIRA
> (v6.3.4#6332)


Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #278

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #361

2015-03-12 Thread jenkins
See 


--
[...truncated 4207 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #306

2015-03-12 Thread jenkins
See 


--
[...truncated 3580 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Sudheer Vinukonda (JIRA)

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

Sudheer Vinukonda commented on TS-3437:
---

It looks like DHE support was added in commit SHA 
f1aec358f45207d9e3f20ffb972e32aa087078b0  (TS-2417) in 5.2. 

I think the explanation that [~zwoop] refers to above is to ensure 
compatibility within minor versions by turning off DHE by default.

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #277

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

[jira] [Commented] (TS-3417) Use madvise() with MADV_DONTDUMP option to limit core sizes

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3417:
---

If we ever want to enable this option again, seems unlikely, but just in case, 
the following patch would have fixed the build issues:

{code}
diff --git a/iocore/eventsystem/EventSystem.cc 
b/iocore/eventsystem/EventSystem.cc
index 4d61f39..d31061d 100644
--- a/iocore/eventsystem/EventSystem.cc
+++ b/iocore/eventsystem/EventSystem.cc
@@ -49,5 +49,16 @@ ink_event_system_init(ModuleVersion v)
 default_small_iobuffer_size = max_iobuffer_size;
   if (default_large_iobuffer_size > max_iobuffer_size)
 default_large_iobuffer_size = max_iobuffer_size;
+
+#ifdef MADV_DONTDUMP // This should only exist on Linux 3.4 and higher.
+bool dont_dump_enabled;
+RecGetRecordBool("proxy.config.allocator.dontdump_iobuffers", (RecBool 
*)&dont_dump_enabled, false);
+
+if (dont_dump_enabled) {
+  iobuffer_advice = MADV_DONTDUMP;
+}
+#endif
+
+
   init_buffer_allocators();
 }
diff --git a/iocore/eventsystem/IOBuffer.cc b/iocore/eventsystem/IOBuffer.cc
index 56abb20..3a6bfe7 100644
--- a/iocore/eventsystem/IOBuffer.cc
+++ b/iocore/eventsystem/IOBuffer.cc
@@ -39,6 +39,7 @@ inkcoreapi ClassAllocator 
ioBlockAllocator("ioBlockAllocator", DE
 int64_t default_large_iobuffer_size = DEFAULT_LARGE_BUFFER_SIZE;
 int64_t default_small_iobuffer_size = DEFAULT_SMALL_BUFFER_SIZE;
 int64_t max_iobuffer_size = DEFAULT_BUFFER_SIZES - 1;
+int iobuffer_advice = 0;

 //
 // Initialization
@@ -47,16 +48,6 @@ void
 init_buffer_allocators()
 {
   char *name;
-  int advice = 0;
-
-#ifdef MADV_DONTDUMP // This should only exist on Linux 3.4 and higher.
-bool dont_dump_enabled;
-RecGetRecordBool("proxy.config.allocator.dontdump_iobuffers", (RecBool 
*)&dont_dump_enabled, false);
-
-if (dont_dump_enabled) {
-  advice = MADV_DONTDUMP;
-}
-#endif

   for (int i = 0; i < DEFAULT_BUFFER_SIZES; i++) {
 int64_t s = DEFAULT_BUFFER_BASE_SIZE * (((int64_t)1) << i);
@@ -67,7 +58,7 @@ init_buffer_allocators()

 name = new char[64];
 snprintf(name, 64, "ioBufAllocator[%d]", i);
-ioBufAllocator[i].re_init(name, s, n, a, advice);
+ioBufAllocator[i].re_init(name, s, n, a, iobuffer_advice);
   }
 }

diff --git a/iocore/eventsystem/I_IOBuffer.h b/iocore/eventsystem/I_IOBuffer.h
index 0e5fe0c..a423754 100644
--- a/iocore/eventsystem/I_IOBuffer.h
+++ b/iocore/eventsystem/I_IOBuffer.h
@@ -54,6 +54,7 @@ class VIO;
 inkcoreapi extern int64_t max_iobuffer_size;
 extern int64_t default_small_iobuffer_size;
 extern int64_t default_large_iobuffer_size; // matched to size of OS buffers
+extern int iobuffer_advice;

 #if !defined(TRACK_BUFFER_USER)
 #define TRACK_BUFFER_USER 1
{code}


> Use madvise() with MADV_DONTDUMP option to limit core sizes
> ---
>
> Key: TS-3417
> URL: https://issues.apache.org/jira/browse/TS-3417
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Core
>Reporter: Phil Sorber
>Assignee: Phil Sorber
> Fix For: 5.3.0
>
>
> When ATS crashes it often leaves behind very large core files, in the 
> hundreds of gigabytes. A large percentage of these core files are useless 
> data in the IO buffers. We can limit the pages that the kernel dumps with 
> madvise().
> Note: This will only work on Linux 3.4+.



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


Build failed in Jenkins: tsqa-master #231

2015-03-12 Thread jenkins
See 

Changes:

[Leif Hedstrom] Revert "TS-3312: KA timeout to origin does not seem to honor 
configurations"

[Leif Hedstrom] Revert "TS-3312: Updating Changes"

--
[...truncated 13202 lines...]
  10  628  3141.800   47312386/4731238  2004 2004 2004   78141648   
12.90
  10  629  3147.100   46774130/4677413  2021 2021 2021   77542310   
13.90
  10  625  3126.500   46351273/4635127  2012 2012 2012   76978881   
14.90
  10  621  3107.800   46247874/4624787  1996 1996 1996   76944349   
15.90
  10  618  3092.800   46037037/4603703  1979 1979 1979   76079014   
16.90
  10  616  3083.300   46230405/4623040  1963 1963 1963   75797862   
17.90
  10  619  3102.000   47288590/4728859  1972 1972 1972   77293144   
18.90
  10  626  3132.200   47693411/4769341  1995 1995 1995   78056152   
19.90
 con  new ops   1B  lat  bytes/per svrs  new  ops  total   time 
 err
  10  626  3134.800   48638276/4863827  2001 2001 2000   79901770   
20.90
  10  636  3186.400   48079236/4807923  2042 2042 2042   79509187   
21.90
  10  640  3205.500   4797/479  2056 2056 2056   78938700   
22.90
  10  642  3216.000   47996142/4799614  2059 2059 2058   78850672   
23.90
  10  643  3217.400   46686297/4668629  2058 2058 2058   77121812   
24.90
  10  639  3199.700   47752360/4775236  2052 2052 2053   79043231   
25.90
  10  638  3191.800   48038199/4803819  2042 2042 2043   78905141   
26.90
  10  637  3186.000   47398947/4739894  2036 2036 2036   77603198   
27.90
MSG: reloading logging configuration
  10  633  3168.600   46656719/4665671  2026 2026 2026   76983469   
28.90
  10  633  3170.500   46574107/4657410  2028 2028 2029   76762149   
29.90
  10  629  3150.800   47026695/4702669  2027 2027 2027   77995603   
30.90
  10  626  3130.800   47547219/4754721  2020 2020 2019   78805527   
31.90
  10  625  3130.900   48456888/4845688  2019 2019 2018   80626672   
32.90
  10  631  3158.500   49163101/4916310  2048 2048 2048   81853436   
33.90
  10  637  3190.200   49416110/4941611  2063 2063 2064   82375855   
34.90
  10  637  3189.200   48475018/4847501  2071 2071 2070   80320084   
35.90
  10  640  3201.700   48542831/4854283  2077 2077 2078   80481756   
36.90
  10  638  3195.000   48245098/4824509  2071 2071 2071   80307920   
37.90
  10  638  3193.400   47805108/4780510  2066 2066 2066   79582821   
38.90
  10  635  3177.500   47976248/4797624  2047 2047 2046   80491289   
39.90
 con  new ops   1B  lat  bytes/per svrs  new  ops  total   time 
 err
  10  626  3132.200   47255110/4725511  2020 2020 2019   78883162   
40.90
  10  630  3155.200   46950180/4695018  2044 2044 2044   78604544   
41.90
  10  636  3184.500   47655542/4765554  2053 2053 2053   79142421   
42.90
  10  648  3245.000   48017992/4801799  2084 2084 2084   79605076   
43.90
  10  656  3282.600   48953632/4895363  2099 2099 2100   80573524   
44.90
  10  663  3319.300   49284456/4928445  2117 2117 2117   80406040   
45.90
  10  668  3346.800   48996451/4899645  2124 2124 2124   79741366   
46.90
  10  670  3352.100   48597741/4859774  2131 2131 2131   79532019   
47.90
  10  661  3308.700   49133937/4913393  2103 2103 2103   80659796   
48.90
  10  660  3303.500   48758230/4875823  2104 2104 2105   79907419   
49.90
  10  660  3306.800   48408727/4840872  2106 2106 2106   79172823   
50.90
  10  647  3241.100   47594832/4759483  2069 2069 2069   77957423   
51.90
  10  647  3239.800   48136107/4813610  2072 2072 2071   78826625   
52.90
  10  638  3191.500   48474121/4847412  2032 2032 2031   78951780   
53.90
  10  639  3199.400   49042293/4904229  2042 2042 2042   80114776   
54.90
  10  642  3214.500   49772814/4977281  2048 2048 2048   81833932   
55.90
  10  646  3236.000   48392316/4839231  2066 2066 2065   79589461   
56.90
  10  648  3244.400   48069194/4806919  2073 2073 2072   78846462   
57.90
MSG: reloading logging configuration
  10  651  3261.100   47751925/4775192  2093 2093 2092   78913190   
58.90
  10  653  3270.900   47327533/4732753  2086 2086 2086   77671258   
59.90
 con  new ops   1B  lat  bytes/per svrs  new  ops  total   time 
 err
  10  640  3201.300   47197147/4719714  2047 2047 2047   77461725   
60.90
  10  512  2561.100   37757718/3775771  1638 1638 1638   61969380   
60.90
MSG: checking fo

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #360

2015-03-12 Thread jenkins
See 


--
[...truncated 4207 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #305

2015-03-12 Thread jenkins
See 


--
[...truncated 3580 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Dzmitry Markovich (JIRA)

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

Dzmitry Markovich commented on TS-3312:
---

Agree with HttpConfig::release. Maybe I'm missing something, but I don see how 
it breaks "previously overridable configuration into a non-overridable one"? 
I'll talk to Alan offline...

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Comment Edited] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Dzmitry Markovich (JIRA)

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

Dzmitry Markovich edited comment on TS-3312 at 3/12/15 10:26 PM:
-

Agree with HttpConfig::release. Maybe I'm missing something, but I don see how 
it breaks "previously overridable configuration into a non-overridable one"? 
I'll talk to Alan offline and will update this ticket...


was (Author: dmich):
Agree with HttpConfig::release. Maybe I'm missing something, but I don see how 
it breaks "previously overridable configuration into a non-overridable one"? 
I'll talk to Alan offline...

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3437:
---

Yes, Thomas gave a reasonable explanation, allowing us to disable broken 
records.config's that might already be in production, but making sure the DHE 
ciphers are disabled by default. +1.

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Brian Geffon (JIRA)

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

Brian Geffon commented on TS-3437:
--

We all synced up on IRC, I'm going to correct the patch and we'll remove this 
config in 6.0.

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #276

2015-03-12 Thread jenkins
See 


--
[...truncated 3561 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #359

2015-03-12 Thread jenkins
See 


--
[...truncated 4210 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #304

2015-03-12 Thread jenkins
See 


--
[...truncated 3583 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Brian Geffon (JIRA)

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

Brian Geffon commented on TS-3312:
--

[~dmich], can you take a crack at Alan's suggestion?

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #358

2015-03-12 Thread jenkins
See 


--
[...truncated 4207 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #275

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #303

2015-03-12 Thread jenkins
See 


--
[...truncated 3581 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

[jira] [Comment Edited] (TS-3427) compilation error of atscppapi when configured for a out-of-tree build

2015-03-12 Thread James Peach (JIRA)

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

James Peach edited comment on TS-3427 at 3/12/15 8:56 PM:
--

Yeh this works, but it's pretty ugly and repetitive. A better way is to use an 
include file for all the example plugins to ensure consistent build commands 
(for example {{build/plugins.mk}} does this). 

An automake LDADD variable should be preferred over manually constructing the 
linker path. One problem with manually constructing the path is that the link 
can falsely succeed (or fail) if the library exists in the default linker path.


was (Author: jamespeach):
Yeh this works, but it's pretty ugly and repetitive. A better way is to use an 
include file for all the example plugins to ensure consistent build commands 
(for example {{build/plugins.mk}} does this). An automake LDADD variable should 
be preferred over manually constructing the linker path.

> compilation error of atscppapi when configured for a out-of-tree build
> --
>
> Key: TS-3427
> URL: https://issues.apache.org/jira/browse/TS-3427
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Build, CPP API
>Reporter: Bin
>Assignee: Brian Geffon
> Fix For: 6.0.0
>
> Attachments: atscppapi_3.diff, unused_variables.diff
>
>
> Header file not found error when --enable-cppapi is enabled for an 
> out-of-tree build on RHEL 6.4. It has no complaints if it is a in-tree build. 



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


[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3312:
---

Yes, that seems right. Lets back this out, and redo.

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


Jenkins build is back to normal : ubuntu_14_10-master » clang,ubuntu_14_10,debug #302

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : ubuntu_13_10-master » gcc,ubuntu_13_10,release #823

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : debian_jessie-master » gcc,debian_jessie,release #357

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : fedora_21-master » clang,fedora_21,debug #274

2015-03-12 Thread jenkins
See 




Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #357

2015-03-12 Thread jenkins
See 


--
[...truncated 4207 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERR

Jenkins build is back to normal : ubuntu_14_04-master » gcc,ubuntu_14_04,debug #843

2015-03-12 Thread jenkins
See 




Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #274

2015-03-12 Thread jenkins
See 


--
[...truncated 3558 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

make[4]: Leaving directory 
'

Jenkins build is back to normal : ubuntu_14_10-master » gcc,ubuntu_14_10,release #302

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : fedora_20-master » gcc,fedora_20,release #851

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : centos_7-master » gcc,centos_7,release #584

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : fedora_21-master » gcc,fedora_21,spdy #274

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : fedora_21-master » gcc,fedora_21,release #274

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : fedora_20-master » gcc,fedora_20,debug #851

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : debian_jessie-master » gcc,debian_jessie,hardening #357

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : ubuntu_14_04-master » gcc,ubuntu_14_04,release #843

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : ubuntu_14_10-master » gcc,ubuntu_14_10,spdy #302

2015-03-12 Thread jenkins
See 




Jenkins build is back to normal : centos_7-master » gcc,centos_7,debug #584

2015-03-12 Thread jenkins
See 




Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #302

2015-03-12 Thread jenkins
See 


--
[...truncated 3580 lines...]
make[2]: Entering directory 
'
Making all in luajit
test -d "../../lib/luajit/src" || (cd "../.." && git submodule update --init)
test -d "../lib/luajit/src" || cp -rf "../../lib/luajit" "../lib/"
cd luajit && make  BUILDMODE="static" 
PREFIX="
 CC="ccache cc" \
 CFLAGS="-ggdb3 -pipe -Wall -Werror -mcx16 -DLUA_COMPAT_ALL 
-DLUA_USE_POSIX -DLUA_USE_DLOPEN" LDFLAGS=""
make[3]: Entering directory 
'
 Building LuaJIT 2.0.3 
make -C src
make[4]: Entering directory 
'
make[4]: Nothing to be done for 'default'.
make[4]: Leaving directory 
'
 Successfully built LuaJIT 2.0.3 
make[3]: Leaving directory 
'
make[2]: Leaving directory 
'
make[1]: Leaving directory 
'
Making check in proxy/hdrs
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in proxy/shared
make[1]: Entering directory 
'
make[1]: Nothing to be done for 'check'.
make[1]: Leaving directory 
'
Making check in mgmt
make[1]: Entering directory 
'
Making check in cluster
make[2]: Entering directory 
'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory 
'
Making check in utils
make[2]: Entering directory 
'
make  test_marshall
make[3]: Entering directory 
'
  CXX  test_marshall.o
  CXXLDtest_marshall
make[3]: Leaving directory 
'
make  check-TESTS
make[3]: Entering directory 
'
make[4]: Entering directory 
'
PASS: test_marshall
make[5]: Entering directory 
'
make[5]: Nothing to be done for 'all'.
make[5]: Leaving directory 
'

Testsuite summary for Apache Traffic Server 5.3.0

# TOTAL: 1
# PASS:  1
# SKIP:  0
# XFAIL: 0
# FAIL:  0
# XPASS: 0
# ERROR: 0

Jenkins build is back to normal : ubuntu_13_10-master » gcc,ubuntu_13_10,debug #823

2015-03-12 Thread jenkins
See 




[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Alan M. Carroll (JIRA)

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

Alan M. Carroll commented on TS-3312:
-

I think the better option here would be to add a member to HttpServerSession 
that holds the inactivity time out value and then set it in HttpSM::kill_this() 
so that

* It gets passed in an overriddable way
* You don't have to lock the HttpConfig inside the session manager.

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Comment Edited] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom edited comment on TS-3312 at 3/12/15 7:59 PM:


Couple of things:

1) I'm pretty sure this turns this previously overridable configuration into a 
non-overridable one? At least in this usage. That should be addressed.

2) I'm fairly certain, unless I'm missing some C++ voodoo, that you are now 
leaking the leases. I.e. we ought to do

{code}
diff --git a/proxy/http/HttpSessionManager.cc b/proxy/http/HttpSessionManager.cc
index c650ab6..deea98c 100644
--- a/proxy/http/HttpSessionManager.cc
+++ b/proxy/http/HttpSessionManager.cc
@@ -128,6 +128,7 @@ ServerSessionPool::releaseSession(HttpServerSession* ss)
   // Once there is an active transaction on this connection, inactivity 
timeout will be
   // overwritten to transaction_no_activity_timeout_out
   
ss->get_netvc()->set_inactivity_timeout(HRTIME_SECONDS(http_config_params->oride.keep_alive_no_activity_timeout_out));
+  HttpConfig::release(http_config_params);
   ss->get_netvc()->set_active_timeout(ss->get_netvc()->get_active_timeout());
   // put it in the pools.
   m_ip_pool.insert(ss);
{code}


was (Author: zwoop):
Coup[le of things:

1) I'm pretty sure this turns this previously overridable configuration into a 
non-overridable one? At least in this usage. That should be addressed.

2) I'm fairly certain, unless I'm missing some C++ voodoo, that you are now 
leaking the leases. I.e. we ought to do

{code}
diff --git a/proxy/http/HttpSessionManager.cc b/proxy/http/HttpSessionManager.cc
index c650ab6..deea98c 100644
--- a/proxy/http/HttpSessionManager.cc
+++ b/proxy/http/HttpSessionManager.cc
@@ -128,6 +128,7 @@ ServerSessionPool::releaseSession(HttpServerSession* ss)
   // Once there is an active transaction on this connection, inactivity 
timeout will be
   // overwritten to transaction_no_activity_timeout_out
   
ss->get_netvc()->set_inactivity_timeout(HRTIME_SECONDS(http_config_params->oride.keep_alive_no_activity_timeout_out));
+  HttpConfig::release(http_config_params);
   ss->get_netvc()->set_active_timeout(ss->get_netvc()->get_active_timeout());
   // put it in the pools.
   m_ip_pool.insert(ss);
{code}

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Commented] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3312:
---

Coup[le of things:

1) I'm pretty sure this turns this previously overridable configuration into a 
non-overridable one? At least in this usage. That should be addressed.

2) I'm fairly certain, unless I'm missing some C++ voodoo, that you are now 
leaking the leases. I.e. we ought to do

{code}
diff --git a/proxy/http/HttpSessionManager.cc b/proxy/http/HttpSessionManager.cc
index c650ab6..deea98c 100644
--- a/proxy/http/HttpSessionManager.cc
+++ b/proxy/http/HttpSessionManager.cc
@@ -128,6 +128,7 @@ ServerSessionPool::releaseSession(HttpServerSession* ss)
   // Once there is an active transaction on this connection, inactivity 
timeout will be
   // overwritten to transaction_no_activity_timeout_out
   
ss->get_netvc()->set_inactivity_timeout(HRTIME_SECONDS(http_config_params->oride.keep_alive_no_activity_timeout_out));
+  HttpConfig::release(http_config_params);
   ss->get_netvc()->set_active_timeout(ss->get_netvc()->get_active_timeout());
   // put it in the pools.
   m_ip_pool.insert(ss);
{code}

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Reopened] (TS-3312) KA timeout to origin does not seem to honor configurations

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom reopened TS-3312:
---

Reopening, this doesn't look quite right.

> KA timeout to origin does not seem to honor configurations
> --
>
> Key: TS-3312
> URL: https://issues.apache.org/jira/browse/TS-3312
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core, HTTP
>Reporter: Leif Hedstrom
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
> Attachments: keep_alive_timeout.diff
>
>
> Doing some basic testing, with the following settings:
> {code}
> CONFIG proxy.config.http.keep_alive_no_activity_timeout_out INT 120
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> I see ATS timing out the origin sessions after 30sec, with a 
> {code}
> CONFIG proxy.config.http.transaction_no_activity_timeout_out INT 30
> {code}
> What's also interesting, after I made a config change per Geffon's suggestion:
> {code}
> CONFIG proxy.config.http.origin_min_keep_alive_connections INT 10
> {code}
> I see the following in the diagnostic trace:
> {code}
> [Jan 21 14:19:19.416] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] [release 
> session] session placed into shared pool
> [Jan 21 14:19:49.558] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.633] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_bucket] session received io notice [VC_EVENT_INACTIVITY_TIMEOUT], 
> reseting timeout to maintain minimum number of connections
> [Jan 21 14:20:19.670] Server {0x7fb1b4f06880} DEBUG: (http_ss) [0] 
> [session_pool] session 0x1cc5aa0 received io notice [VC_EVENT_EOS]
> {code}
> So, not only is it resetting the timeout twice, it also gets a VC_EVENT_EOS. 
> I first though it was the origin that closed the connection, but from what I 
> could tell, the timeout on the origin was set to 60s.



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


[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3437:
---

The reason I'm raising a stink here is that we are about to branch 5.3.0, and 
I'd really need to be convinced that introducing this new configuration is the 
right thing to do (cause once it's in 5.3.0, it's not easily undone).

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Leif Hedstrom (JIRA)

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

Leif Hedstrom commented on TS-3437:
---

If DH as configured in the cipher suites doesn't work, then we should remove it 
from the default config, no? Having two ways to enable DH  seems wrong at best, 
and fraud with perils in a worst case scenario.

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


[jira] [Commented] (TS-3331) negative responses cached even when headers indicate otherwise

2015-03-12 Thread William Bardwell (JIRA)

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

William Bardwell commented on TS-3331:
--

Re-did it as suggested in

https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;a=commit;h=e5f2bb554eb33e9b29cf728d2bcb04ba4f1b0e8a


> negative responses cached even when headers indicate otherwise
> --
>
> Key: TS-3331
> URL: https://issues.apache.org/jira/browse/TS-3331
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Core
>Reporter: William Bardwell
>Assignee: William Bardwell
>  Labels: review
> Fix For: 5.3.0
>
>
> Negative type status codes get cached even when there are Cache-Control: 
> no-store or the like headers and positive caching would be paying attention 
> to that.  So the fix is to apply response headers (and general caching 
> config) to negative caching choices too.
> My patch might fix [TS-2633] 406 negative responses being cached for too long



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


[jira] [Commented] (TS-3427) compilation error of atscppapi when configured for a out-of-tree build

2015-03-12 Thread James Peach (JIRA)

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

James Peach commented on TS-3427:
-

Yeh this works, but it's pretty ugly and repetitive. A better way is to use an 
include file for all the example plugins to ensure consistent build commands 
(for example {{build/plugins.mk}} does this). An automake LDADD variable should 
be preferred over manually constructing the linker path.

> compilation error of atscppapi when configured for a out-of-tree build
> --
>
> Key: TS-3427
> URL: https://issues.apache.org/jira/browse/TS-3427
> Project: Traffic Server
>  Issue Type: Bug
>  Components: Build, CPP API
>Reporter: Bin
>Assignee: Brian Geffon
> Fix For: 6.0.0
>
> Attachments: atscppapi_3.diff, unused_variables.diff
>
>
> Header file not found error when --enable-cppapi is enabled for an 
> out-of-tree build on RHEL 6.4. It has no complaints if it is a in-tree build. 



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


[jira] [Commented] (TS-3436) Add milestone data for API times

2015-03-12 Thread Alan M. Carroll (JIRA)

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

Alan M. Carroll commented on TS-3436:
-

Pull request fixed up.

> Add milestone data for API times
> 
>
> Key: TS-3436
> URL: https://issues.apache.org/jira/browse/TS-3436
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Core
>Reporter: Alan M. Carroll
>Assignee: Alan M. Carroll
>
> Add two new milestones that track API time, "active" and "total". These are 
> reasonably equivalent to "wall clock time" and "cpu time" concepts for 
> process. The total time measures how long, in real time, a transaction spends 
> involved with API callouts in plugins. The active time tracks the amount of 
> time spent in an API callout. When these two values are different this means 
> time is being spent either in lock contention to run the plugin continuation 
> or waiting for the plugin to re-enable the transaction. Originally I had just 
> the "total" counter but I think the ability to detect contention and wait is 
> very valuable.
> The values are a bit odd - they are the actual amount of time spent plus the 
> start time of the state machine. I debated for a while about that with some 
> other contributors and the concenssus was that overall the best option 
> because it makes those milestones behave exactly like all the others (e.g., 
> you subtract sm_start to get the real value).



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


Build failed in Jenkins: ubuntu_14_10-master » clang,ubuntu_14_10,debug #301

2015-03-12 Thread jenkins
See 


--
[...truncated 3212 lines...]
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: ( cd ".libs" && rm -f "bnull-transform.la" && ln -s 
"../bnull-transform.la" "bnull-transform.la" )
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
/bin/bash ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  clang -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: clang++  -fPIC -DPIC -shared -nostdlib 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../.. 
-L/usr/lib/llvm-3.5/bin/../lib -L/lib -L/usr/lib -lstdc++ -lm -lc -lgcc_s 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  
-mcx16   -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
/bin/bash ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
/bin/bash ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
/bin/bash ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o protocol.la -rpath 

 protocol/Protocol.lo protocol/TxnSM.lo  -lcap -lpcre -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  clang -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: /usr/bin/nm -B  null-transform/.libs/null-transform.o   | sed -n 
-e '

Build failed in Jenkins: fedora_20-master » gcc,fedora_20,release #850

2015-03-12 Thread jenkins
See 


--
[...truncated 3176 lines...]
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /usr/bin/nm -B  cache-scan/.libs/cache-scan.o   | sed -n -e 
's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/cache-scan.exp
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o hello.la -rpath 

 hello/hello.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
/bin/sh ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -g -pipe -Wall -O3 -feliminate-unused-debug-symbols 
-fno-strict-aliasing -Werror -Wno-invalid-offsetof -mcx16 -module -shared 
-avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TS

Build failed in Jenkins: fedora_21-master » clang,fedora_21,debug #273

2015-03-12 Thread jenkins
See 


--
[...truncated 3195 lines...]
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o hello.la -rpath 

 hello/hello.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt -lpthread -ldl 
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: clang++  -fPIC -DPIC -shared -nostdlib 
/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl -L/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2 
-L/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64 
-L/usr/bin/../lib64 -L/lib/../lib64 -L/usr/lib/../lib64 
-L/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/../../.. -L/usr/bin/../lib 
-L/lib -L/usr/lib -lstdc++ -lm -lc -lgcc_s 
/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/crtendS.o 
/usr/bin/../lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crtn.o  -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link: ( cd ".libs" && rm -f "bnull-transform.la" && ln -s 
"../bnull-transform.la" "bnull-transform.la" )
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CXX   --mode=link clang++  -Qunused-arguments 
-std=c++11 -ggdb3 -Werror -Wno-invalid-offsetof -mcx16 -module -shared 
-avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt -lpthread -ldl 
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl 
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl 
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: /usr/bin/nm -B  null-transform/.libs/null-transform.o   | sed -n 
-e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/null-transform.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  clang -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,release #356

2015-03-12 Thread jenkins
See 


--
[...truncated 3830 lines...]
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... TSAPI.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_VC_CLOSE_ABORT
None:None: WARNING: c:data reference target not found: TS_URL_SCHEME_FILE
None:None: WARNING: c:data reference target not found: TS_MIME_FIELD_ACCEPT
None:None: WARNING: file reference target not found: {CONFIG_DIR}/plugin.config
None:None: WARNING: file reference target not found: {CONFIG_DIR}/records.config
TSActionCancel.3ts { } TSActionDone.3ts { } TSCacheRead.3ts { } None:None: 
WARNING: c:data reference target not found: TS_EVENT_CACHE_OPEN_READ
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_READ_FAILED
TSCacheRemove.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE_FAILED
None:None: WARNING: c:data reference target not found: TS_EVENT_CACHE_REMOVE
TSCacheWrite.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE_FAILED
TSConfigDataGet.3ts { } TSConfigGet.3ts { } TSConfigRelease.3ts { } 
TSConfigSet.3ts { } TSContCall.3ts { } TSContCreate.3ts { } TSContDataGet.3ts { 
} TSContDataSet.3ts { } TSContDestroy.3ts { } TSContMutexGet.3ts { } 
TSContSchedule.3ts { } TSDebug.3ts { } None:None: WARNING: c:type reference 
target not found: expression
None:None: WARNING: c:type reference target not found: expression
None:None: WARNING: c:func reference target not found: printf
TSHostLookup.3ts { } TSHostLookupResultAddrGet.3ts { } TSHttpConnect.3ts { } 
TSHttpConnectWithPluginId.3ts { } None:None: WARNING: c:type reference target 
not found: TSCVonn
TSHttpHdrClone.3ts { } TSHttpHdrCopy.3ts { } TSHttpHdrCreate.3ts { } 
TSHttpHdrDestroy.3ts { } TSHttpHdrHostGet.3ts { } None:None: WARNING: c:func 
reference target not found: TSHttpEffectiveUrlStringGet
TSHttpHdrLengthGet.3ts { } TSHttpHdrMethodGet.3ts { } TSHttpHdrMethodSet.3ts { 
} TSHttpHdrPrint.3ts { } TSHttpHdrReasonGet.3ts { } TSHttpHdrReasonLookup.3ts { 
} TSHttpHdrReasonSet.3ts { } TSHttpHdrStatusGet.3ts { } TSHttpHdrStatusSet.3ts 
{ } TSHttpHdrTypeGet.3ts { } TSHttpHdrTypeSet.3ts { } TSHttpHdrUrlGet.3ts { } 
TSHttpHdrUrlSet.3ts { } TSHttpHdrVersionGet.3ts { } TSHttpHdrVersionSet.3ts { } 
TSHttpHookAdd.3ts { } TSHttpIsInternalRequest.3ts { } None:None: WARNING: 
c:data reference target not found: TS_SUCCESS
None:None: WARNING: c:data reference target not found: TS_ERROR
TSHttpOverridableConfig.3ts { } TSHttpParserCreate.3ts { } None:None: WARNING: 
c:data reference target not found: offset
None:None: WARNING: c:data reference target not found: bufp
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: end
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_REQUEST_HDR_HOOK
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_RESPONSE_HDR_HOOK
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: TS_PARSE_ERROR
None:None: WARNING: c:data reference target not found: TS_PARSE_CONT
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
TSHttpSsnReenable.3ts { } TSHttpTxnCacheLookupStatusGet.3ts { } 
TSHttpTxnCacheLookupUrlGet.3ts { } TSHttpTxnCachedReqGet.3ts { } 
TSHttpTxnCachedRespGet.3ts { } TSHttpTxnClientPacketDscpSet.3ts { } 
TSHttpTxnClientPacketMarkSet.3ts { } TSHttpTxnClientPacketTosSet.3ts { } 
TSHttpTxnClientReqGet.3ts { } TSHttpTxnClientRespGet.3ts { } 
TSHttpTxnErrorBodySet.3ts { } TSHttpTxnIncomingAddrGet.3ts { } 
TSHttpTxnIntercept.3ts { } None:None

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,release #301

2015-03-12 Thread jenkins
See 


--
[...truncated 3204 lines...]
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  intercept/.libs/intercept.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 


Build failed in Jenkins: ubuntu_13_10-master » gcc,ubuntu_13_10,release #822

2015-03-12 Thread jenkins
See 


--
[...truncated 3181 lines...]
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-L/usr/lib -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -L/usr/lib 
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -g -pipe -Wall -O3 -feliminate-unused-debug-symbols 
-fno-strict-aliasing -Werror -Wno-invalid-offsetof -mcx16 -module -shared 
-avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -L/usr/lib -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o 

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,release #273

2015-03-12 Thread jenkins
See 


--
[...truncated 3181 lines...]
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
 -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-r

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,spdy #273

2015-03-12 Thread jenkins
See 


--
[...truncated 3192 lines...]
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -e

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

2015-03-12 Thread jenkins
See 


--
[...truncated 3176 lines...]
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.2/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: mv -f ".libs/lifecycle-plugin.expT" ".libs/lifecycle-plugin.exp"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #273

2015-03-12 Thread jenkins
See 


--
[...truncated 3182 lines...]
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
 -lxml2
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o protocol.la -rpath 

 protocol/Protocol.lo protocol/TxnSM.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared

[jira] [Commented] (TS-3436) Add milestone data for API times

2015-03-12 Thread James Peach (JIRA)

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

James Peach commented on TS-3436:
-

Yeh a separate interface measuring elapsed time for each hook per txn would be 
interesting. Even global stats measuring total time per hook would give some 
helpful guidance to operators.

> Add milestone data for API times
> 
>
> Key: TS-3436
> URL: https://issues.apache.org/jira/browse/TS-3436
> Project: Traffic Server
>  Issue Type: Improvement
>  Components: Core
>Reporter: Alan M. Carroll
>Assignee: Alan M. Carroll
>
> Add two new milestones that track API time, "active" and "total". These are 
> reasonably equivalent to "wall clock time" and "cpu time" concepts for 
> process. The total time measures how long, in real time, a transaction spends 
> involved with API callouts in plugins. The active time tracks the amount of 
> time spent in an API callout. When these two values are different this means 
> time is being spent either in lock contention to run the plugin continuation 
> or waiting for the plugin to re-enable the transaction. Originally I had just 
> the "total" counter but I think the ability to detect contention and wait is 
> very valuable.
> The values are a bit odd - they are the actual amount of time spent plus the 
> start time of the state machine. I debated for a while about that with some 
> other contributors and the concenssus was that overall the best option 
> because it makes those milestones behave exactly like all the others (e.g., 
> you subtract sm_start to get the real value).



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


Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,spdy #301

2015-03-12 Thread jenkins
See 


--
[...truncated 3215 lines...]
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: echo "{ global:" > .libs/hello.ver
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  intercept/.libs/intercept.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRem

Build failed in Jenkins: ubuntu_13_10-master » gcc,ubuntu_13_10,debug #822

2015-03-12 Thread jenkins
See 


--
[...truncated 3182 lines...]
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-L/usr/lib -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -L/usr/lib -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -L/usr/lib 
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  intercept/.libs/intercept.o   
-L/usr/lib -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #356

2015-03-12 Thread jenkins
See 


--
[...truncated 3831 lines...]
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... TSAPI.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_VC_CLOSE_ABORT
None:None: WARNING: c:data reference target not found: TS_URL_SCHEME_FILE
None:None: WARNING: c:data reference target not found: TS_MIME_FIELD_ACCEPT
None:None: WARNING: file reference target not found: {CONFIG_DIR}/plugin.config
None:None: WARNING: file reference target not found: {CONFIG_DIR}/records.config
TSActionCancel.3ts { } TSActionDone.3ts { } TSCacheRead.3ts { } None:None: 
WARNING: c:data reference target not found: TS_EVENT_CACHE_OPEN_READ
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_READ_FAILED
TSCacheRemove.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE_FAILED
None:None: WARNING: c:data reference target not found: TS_EVENT_CACHE_REMOVE
TSCacheWrite.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE_FAILED
TSConfigDataGet.3ts { } TSConfigGet.3ts { } TSConfigRelease.3ts { } 
TSConfigSet.3ts { } TSContCall.3ts { } TSContCreate.3ts { } TSContDataGet.3ts { 
} TSContDataSet.3ts { } TSContDestroy.3ts { } TSContMutexGet.3ts { } 
TSContSchedule.3ts { } TSDebug.3ts { } None:None: WARNING: c:type reference 
target not found: expression
None:None: WARNING: c:type reference target not found: expression
None:None: WARNING: c:func reference target not found: printf
TSHostLookup.3ts { } TSHostLookupResultAddrGet.3ts { } TSHttpConnect.3ts { } 
TSHttpConnectWithPluginId.3ts { } None:None: WARNING: c:type reference target 
not found: TSCVonn
TSHttpHdrClone.3ts { } TSHttpHdrCopy.3ts { } TSHttpHdrCreate.3ts { } 
TSHttpHdrDestroy.3ts { } TSHttpHdrHostGet.3ts { } None:None: WARNING: c:func 
reference target not found: TSHttpEffectiveUrlStringGet
TSHttpHdrLengthGet.3ts { } TSHttpHdrMethodGet.3ts { } TSHttpHdrMethodSet.3ts { 
} TSHttpHdrPrint.3ts { } TSHttpHdrReasonGet.3ts { } TSHttpHdrReasonLookup.3ts { 
} TSHttpHdrReasonSet.3ts { } TSHttpHdrStatusGet.3ts { } TSHttpHdrStatusSet.3ts 
{ } TSHttpHdrTypeGet.3ts { } TSHttpHdrTypeSet.3ts { } TSHttpHdrUrlGet.3ts { } 
TSHttpHdrUrlSet.3ts { } TSHttpHdrVersionGet.3ts { } TSHttpHdrVersionSet.3ts { } 
TSHttpHookAdd.3ts { } TSHttpIsInternalRequest.3ts { } None:None: WARNING: 
c:data reference target not found: TS_SUCCESS
None:None: WARNING: c:data reference target not found: TS_ERROR
TSHttpOverridableConfig.3ts { } TSHttpParserCreate.3ts { } None:None: WARNING: 
c:data reference target not found: offset
None:None: WARNING: c:data reference target not found: bufp
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: end
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_REQUEST_HDR_HOOK
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_RESPONSE_HDR_HOOK
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: TS_PARSE_ERROR
None:None: WARNING: c:data reference target not found: TS_PARSE_CONT
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
TSHttpSsnReenable.3ts { } TSHttpTxnCacheLookupStatusGet.3ts { } 
TSHttpTxnCacheLookupUrlGet.3ts { } TSHttpTxnCachedReqGet.3ts { } 
TSHttpTxnCachedRespGet.3ts { } TSHttpTxnClientPacketDscpSet.3ts { } 
TSHttpTxnClientPacketMarkSet.3ts { } TSHttpTxnClientPacketTosSet.3ts { } 
TSHttpTxnClientReqGet.3ts { } TSHttpTxnClientRespGet.3ts { } 
TSHttpTxnErrorBodySet.3ts { } TSHttpTxnIncomingAddrGet.3ts { } 
TSHttpTxnIntercept.3ts { } None:None: WARN

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

2015-03-12 Thread jenkins
See 


--
[...truncated 3200 lines...]
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: ( cd ".libs" && rm -f "bnull-transform.la" && ln -s 
"../bnull-transform.la" "bnull-transform.la" )
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -ggdb3 -pipe -Wall -Werror -Wno-invalid-offsetof -mcx16 -module 
-shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDG

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

2015-03-12 Thread jenkins
See 


--
[...truncated 3177 lines...]
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -ggdb3 -pipe -Wall -Werror -Wno-invalid-offsetof -mcx16 -module 
-shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl  -lxml2
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "bnull-transform.la" && ln -s 
"../bnull-transform.la" "bnull-transform.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
 -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: mv -f ".libs/lifecycle-plugin.ex

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,debug #301

2015-03-12 Thread jenkins
See 


--
[...truncated 3204 lines...]
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  intercept/.libs/intercept.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  -mcx16   
-Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -

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

2015-03-12 Thread jenkins
See 


--
[...truncated 3199 lines...]
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -g -pipe -Wall -O3 -feliminate-unused-debug-symbols 
-fno-strict-aliasing -Werror -Wno-invalid-offsetof -mcx16 -module -shared 
-avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Wer

Build failed in Jenkins: fedora_20-master » gcc,fedora_20,debug #850

2015-03-12 Thread jenkins
See 


--
[...truncated 3177 lines...]
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crtn.o  -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crtn.o  -mcx16   
-Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 


Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,hardening #356

2015-03-12 Thread jenkins
See 


--
[...truncated 3832 lines...]
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... TSAPI.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_VC_CLOSE_ABORT
None:None: WARNING: c:data reference target not found: TS_URL_SCHEME_FILE
None:None: WARNING: c:data reference target not found: TS_MIME_FIELD_ACCEPT
None:None: WARNING: file reference target not found: {CONFIG_DIR}/plugin.config
None:None: WARNING: file reference target not found: {CONFIG_DIR}/records.config
TSActionCancel.3ts { } TSActionDone.3ts { } TSCacheRead.3ts { } None:None: 
WARNING: c:data reference target not found: TS_EVENT_CACHE_OPEN_READ
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_READ_FAILED
TSCacheRemove.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE_FAILED
None:None: WARNING: c:data reference target not found: TS_EVENT_CACHE_REMOVE
TSCacheWrite.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE_FAILED
TSConfigDataGet.3ts { } TSConfigGet.3ts { } TSConfigRelease.3ts { } 
TSConfigSet.3ts { } TSContCall.3ts { } TSContCreate.3ts { } TSContDataGet.3ts { 
} TSContDataSet.3ts { } TSContDestroy.3ts { } TSContMutexGet.3ts { } 
TSContSchedule.3ts { } TSDebug.3ts { } None:None: WARNING: c:type reference 
target not found: expression
None:None: WARNING: c:type reference target not found: expression
None:None: WARNING: c:func reference target not found: printf
TSHostLookup.3ts { } TSHostLookupResultAddrGet.3ts { } TSHttpConnect.3ts { } 
TSHttpConnectWithPluginId.3ts { } None:None: WARNING: c:type reference target 
not found: TSCVonn
TSHttpHdrClone.3ts { } TSHttpHdrCopy.3ts { } TSHttpHdrCreate.3ts { } 
TSHttpHdrDestroy.3ts { } TSHttpHdrHostGet.3ts { } None:None: WARNING: c:func 
reference target not found: TSHttpEffectiveUrlStringGet
TSHttpHdrLengthGet.3ts { } TSHttpHdrMethodGet.3ts { } TSHttpHdrMethodSet.3ts { 
} TSHttpHdrPrint.3ts { } TSHttpHdrReasonGet.3ts { } TSHttpHdrReasonLookup.3ts { 
} TSHttpHdrReasonSet.3ts { } TSHttpHdrStatusGet.3ts { } TSHttpHdrStatusSet.3ts 
{ } TSHttpHdrTypeGet.3ts { } TSHttpHdrTypeSet.3ts { } TSHttpHdrUrlGet.3ts { } 
TSHttpHdrUrlSet.3ts { } TSHttpHdrVersionGet.3ts { } TSHttpHdrVersionSet.3ts { } 
TSHttpHookAdd.3ts { } TSHttpIsInternalRequest.3ts { } None:None: WARNING: 
c:data reference target not found: TS_SUCCESS
None:None: WARNING: c:data reference target not found: TS_ERROR
TSHttpOverridableConfig.3ts { } TSHttpParserCreate.3ts { } None:None: WARNING: 
c:data reference target not found: offset
None:None: WARNING: c:data reference target not found: bufp
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: end
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_REQUEST_HDR_HOOK
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_RESPONSE_HDR_HOOK
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: TS_PARSE_ERROR
None:None: WARNING: c:data reference target not found: TS_PARSE_CONT
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
TSHttpSsnReenable.3ts { } TSHttpTxnCacheLookupStatusGet.3ts { } 
TSHttpTxnCacheLookupUrlGet.3ts { } TSHttpTxnCachedReqGet.3ts { } 
TSHttpTxnCachedRespGet.3ts { } TSHttpTxnClientPacketDscpSet.3ts { } 
TSHttpTxnClientPacketMarkSet.3ts { } TSHttpTxnClientPacketTosSet.3ts { } 
TSHttpTxnClientReqGet.3ts { } TSHttpTxnClientRespGet.3ts { } 
TSHttpTxnErrorBodySet.3ts { } TSHttpTxnIncomingAddrGet.3ts { } 
TSHttpTxnIntercept.3ts { } Non

[jira] [Commented] (TS-3437) Add config to enable/disable DH params

2015-03-12 Thread Brian Geffon (JIRA)

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

Brian Geffon commented on TS-3437:
--

No, DH params is not causing the SSL breakage in 5.2.x. I added this config to 
confirm that, but it does seem like a good thing to have anyway because 
starting with 5.2.x and the default DH params that this feature brings means 
that new ciphers are starting to be negotiated, if anything it's a backwards in 
compatible change not to have this feature and have it defaulted to 0 in my 
opinion.

> Add config to enable/disable DH params
> --
>
> Key: TS-3437
> URL: https://issues.apache.org/jira/browse/TS-3437
> Project: Traffic Server
>  Issue Type: Improvement
>Reporter: Brian Geffon
>Assignee: Brian Geffon
> Fix For: 5.3.0
>
>
> As of 5.2.x we support DH params, we should make this configurable, patch 
> incoming.



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


Build failed in Jenkins: fedora_21-master » clang,fedora_21,debug #272

2015-03-12 Thread jenkins
See 


--
[...truncated 3195 lines...]
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl 
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  clang -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap 
-lpcre -lexpat -llzma -lz -lcrypt -lpthread -ldl  -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl 
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -lexpat -llzma -lz -lcrypt 
-lpthread -ldl 
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o protocol.la -rpath 

 protocol/Protocol.lo protocol/TxnSM.lo  -lcap -lpcre -lexpat -llzma -lz 
-lcrypt -lpthread -ldl 
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  clang -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-lexpat -llzma -lz -lcrypt -lpthread -ldl  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link: mv -f ".libs/lifecycle-plugin.expT" ".libs/lifecycle-plugin.exp"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: clang++  -fPIC -DPIC -shar

Build failed in Jenkins: ubuntu_14_10-master » clang,ubuntu_14_10,debug #300

2015-03-12 Thread jenkins
See 


--
[...truncated 3212 lines...]
libtool: link: /usr/bin/nm -B  cache-scan/.libs/cache-scan.o   | sed -n -e 
's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/cache-scan.exp
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: clang++  -fPIC -DPIC -shared -nostdlib 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../.. 
-L/usr/lib/llvm-3.5/bin/../lib -L/lib -L/usr/lib -lstdc++ -lm -lc -lgcc_s 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  
-mcx16   -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  clang -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  clang -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/lifecycle-plugin.expT" ".libs/lifecycle-plugin.exp"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: clang++  -fPIC -DPIC -shared -nostdlib 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  
intercept/.libs/intercept.o   -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu 
-L/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../.. 
-L/usr/lib/llvm-3.5/bin/../lib -L/lib -L/usr/lib -lstdc++ -lm -lc -lgcc_s 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/bin/../lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  
-mcx16   -Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file 
-Wl,.libs/intercept.exp -o .libs/intercept.so
libtool: link: echo "{ global:" > .libs/lifecycle-plugin.ver
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
libtool: link: /usr/bin/nm -B  null-transform/.libs/null-transform.o   | sed -n 
-e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/null-transform.exp
libtool: link:  cat .libs/lifecycle-plugin.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/lifecycle-plugin.ver
/bin/bash ../libtool  --tag=CC   --mode=link clang  -ggdb3  -Qunused-arguments 
-Werror -mcx16 -module -shared -avoid-versi

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,debug #272

2015-03-12 Thread jenkins
See 


--
[...truncated 3182 lines...]
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: /usr/bin/nm -B  lifecycle-plugin/.libs/lifecycle-plugin.o   | 
sed -n -e 's/^.*[   ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/lifecycle-plugin.exp
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crtn.o  -mcx16   
-Wl,-soname -Wl,intercept.so -Wl,-retain-symbols-file -Wl,.libs/intercept.exp 
-o .libs/intercept.so
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/lifecycle-plugin.exp" > ".libs/lifecycle-plugin.expT"
libtool: link: mv -f ".libs/lifecycle-plugin.expT" ".libs/lifecycle-plugin.exp"
libtool: link: echo "{ global:" > .libs/lifecycle-plugin.ver
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link:  cat .libs/lifecycle-plugin.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/lifecycle-plugin.ver
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link:  echo "local: *; };" >> .libs/lifecycle-plugin.ver
libtool: link:  cc -shared  -fPIC -DPIC  
lifecycle-plugin/.libs/lifecycle-plugin.o   -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,lifecycle-plugin.so 
-Wl,-version-script -Wl,.libs/lifecycle-plugin.ver -o .libs/lifecycle-plugin.so
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -ggdb3 
-pipe -Wall -Werror -mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDe

Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,release #355

2015-03-12 Thread jenkins
See 


--
[...truncated 3830 lines...]
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... TSAPI.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_VC_CLOSE_ABORT
None:None: WARNING: c:data reference target not found: TS_URL_SCHEME_FILE
None:None: WARNING: c:data reference target not found: TS_MIME_FIELD_ACCEPT
None:None: WARNING: file reference target not found: {CONFIG_DIR}/plugin.config
None:None: WARNING: file reference target not found: {CONFIG_DIR}/records.config
TSActionCancel.3ts { } TSActionDone.3ts { } TSCacheRead.3ts { } None:None: 
WARNING: c:data reference target not found: TS_EVENT_CACHE_OPEN_READ
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_READ_FAILED
TSCacheRemove.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE_FAILED
None:None: WARNING: c:data reference target not found: TS_EVENT_CACHE_REMOVE
TSCacheWrite.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE_FAILED
TSConfigDataGet.3ts { } TSConfigGet.3ts { } TSConfigRelease.3ts { } 
TSConfigSet.3ts { } TSContCall.3ts { } TSContCreate.3ts { } TSContDataGet.3ts { 
} TSContDataSet.3ts { } TSContDestroy.3ts { } TSContMutexGet.3ts { } 
TSContSchedule.3ts { } TSDebug.3ts { } None:None: WARNING: c:type reference 
target not found: expression
None:None: WARNING: c:type reference target not found: expression
None:None: WARNING: c:func reference target not found: printf
TSHostLookup.3ts { } TSHostLookupResultAddrGet.3ts { } TSHttpConnect.3ts { } 
TSHttpConnectWithPluginId.3ts { } None:None: WARNING: c:type reference target 
not found: TSCVonn
TSHttpHdrClone.3ts { } TSHttpHdrCopy.3ts { } TSHttpHdrCreate.3ts { } 
TSHttpHdrDestroy.3ts { } TSHttpHdrHostGet.3ts { } None:None: WARNING: c:func 
reference target not found: TSHttpEffectiveUrlStringGet
TSHttpHdrLengthGet.3ts { } TSHttpHdrMethodGet.3ts { } TSHttpHdrMethodSet.3ts { 
} TSHttpHdrPrint.3ts { } TSHttpHdrReasonGet.3ts { } TSHttpHdrReasonLookup.3ts { 
} TSHttpHdrReasonSet.3ts { } TSHttpHdrStatusGet.3ts { } TSHttpHdrStatusSet.3ts 
{ } TSHttpHdrTypeGet.3ts { } TSHttpHdrTypeSet.3ts { } TSHttpHdrUrlGet.3ts { } 
TSHttpHdrUrlSet.3ts { } TSHttpHdrVersionGet.3ts { } TSHttpHdrVersionSet.3ts { } 
TSHttpHookAdd.3ts { } TSHttpIsInternalRequest.3ts { } None:None: WARNING: 
c:data reference target not found: TS_SUCCESS
None:None: WARNING: c:data reference target not found: TS_ERROR
TSHttpOverridableConfig.3ts { } TSHttpParserCreate.3ts { } None:None: WARNING: 
c:data reference target not found: offset
None:None: WARNING: c:data reference target not found: bufp
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: end
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_REQUEST_HDR_HOOK
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_RESPONSE_HDR_HOOK
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: TS_PARSE_ERROR
None:None: WARNING: c:data reference target not found: TS_PARSE_CONT
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
TSHttpSsnReenable.3ts { } TSHttpTxnCacheLookupStatusGet.3ts { } 
TSHttpTxnCacheLookupUrlGet.3ts { } TSHttpTxnCachedReqGet.3ts { } 
TSHttpTxnCachedRespGet.3ts { } TSHttpTxnClientPacketDscpSet.3ts { } 
TSHttpTxnClientPacketMarkSet.3ts { } TSHttpTxnClientPacketTosSet.3ts { } 
TSHttpTxnClientReqGet.3ts { } TSHttpTxnClientRespGet.3ts { } 
TSHttpTxnErrorBodySet.3ts { } TSHttpTxnIncomingAddrGet.3ts { } 
TSHttpTxnIntercept.3ts { } None:None

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

2015-03-12 Thread jenkins
See 


--
[...truncated 3200 lines...]
libtool: link: ( cd ".libs" && rm -f "bnull-transform.la" && ln -s 
"../bnull-transform.la" "bnull-transform.la" )
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/cache-scan.exp" > ".libs/cache-scan.expT"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -ggdb3 -pipe -Wall -Werror -Wno-invalid-offsetof -mcx16 -module 
-shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 


Build failed in Jenkins: debian_jessie-master » gcc,debian_jessie,debug #355

2015-03-12 Thread jenkins
See 


--
[...truncated 3831 lines...]
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
:2178:
 WARNING: Title underline too short.

ts.http.server_packet_tos_set
-
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... TSAPI.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_EVENT_NONE
None:None: WARNING: c:data reference target not found: TS_VC_CLOSE_ABORT
None:None: WARNING: c:data reference target not found: TS_URL_SCHEME_FILE
None:None: WARNING: c:data reference target not found: TS_MIME_FIELD_ACCEPT
None:None: WARNING: file reference target not found: {CONFIG_DIR}/plugin.config
None:None: WARNING: file reference target not found: {CONFIG_DIR}/records.config
TSActionCancel.3ts { } TSActionDone.3ts { } TSCacheRead.3ts { } None:None: 
WARNING: c:data reference target not found: TS_EVENT_CACHE_OPEN_READ
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_READ_FAILED
TSCacheRemove.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_REMOVE_FAILED
None:None: WARNING: c:data reference target not found: TS_EVENT_CACHE_REMOVE
TSCacheWrite.3ts { } None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE
None:None: WARNING: c:data reference target not found: 
TS_EVENT_CACHE_OPEN_WRITE_FAILED
TSConfigDataGet.3ts { } TSConfigGet.3ts { } TSConfigRelease.3ts { } 
TSConfigSet.3ts { } TSContCall.3ts { } TSContCreate.3ts { } TSContDataGet.3ts { 
} TSContDataSet.3ts { } TSContDestroy.3ts { } TSContMutexGet.3ts { } 
TSContSchedule.3ts { } TSDebug.3ts { } None:None: WARNING: c:type reference 
target not found: expression
None:None: WARNING: c:type reference target not found: expression
None:None: WARNING: c:func reference target not found: printf
TSHostLookup.3ts { } TSHostLookupResultAddrGet.3ts { } TSHttpConnect.3ts { } 
TSHttpConnectWithPluginId.3ts { } None:None: WARNING: c:type reference target 
not found: TSCVonn
TSHttpHdrClone.3ts { } TSHttpHdrCopy.3ts { } TSHttpHdrCreate.3ts { } 
TSHttpHdrDestroy.3ts { } TSHttpHdrHostGet.3ts { } None:None: WARNING: c:func 
reference target not found: TSHttpEffectiveUrlStringGet
TSHttpHdrLengthGet.3ts { } TSHttpHdrMethodGet.3ts { } TSHttpHdrMethodSet.3ts { 
} TSHttpHdrPrint.3ts { } TSHttpHdrReasonGet.3ts { } TSHttpHdrReasonLookup.3ts { 
} TSHttpHdrReasonSet.3ts { } TSHttpHdrStatusGet.3ts { } TSHttpHdrStatusSet.3ts 
{ } TSHttpHdrTypeGet.3ts { } TSHttpHdrTypeSet.3ts { } TSHttpHdrUrlGet.3ts { } 
TSHttpHdrUrlSet.3ts { } TSHttpHdrVersionGet.3ts { } TSHttpHdrVersionSet.3ts { } 
TSHttpHookAdd.3ts { } TSHttpIsInternalRequest.3ts { } None:None: WARNING: 
c:data reference target not found: TS_SUCCESS
None:None: WARNING: c:data reference target not found: TS_ERROR
TSHttpOverridableConfig.3ts { } TSHttpParserCreate.3ts { } None:None: WARNING: 
c:data reference target not found: offset
None:None: WARNING: c:data reference target not found: bufp
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: end
None:None: WARNING: c:data reference target not found: start
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_REQUEST_HDR_HOOK
None:None: WARNING: c:data reference target not found: 
TS_HTTP_READ_RESPONSE_HDR_HOOK
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: parser
None:None: WARNING: c:data reference target not found: TS_PARSE_ERROR
None:None: WARNING: c:data reference target not found: TS_PARSE_CONT
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
None:None: WARNING: c:data reference target not found: TS_PARSE_DONE
None:None: WARNING: c:data reference target not found: TS_PARSE_OK
TSHttpSsnReenable.3ts { } TSHttpTxnCacheLookupStatusGet.3ts { } 
TSHttpTxnCacheLookupUrlGet.3ts { } TSHttpTxnCachedReqGet.3ts { } 
TSHttpTxnCachedRespGet.3ts { } TSHttpTxnClientPacketDscpSet.3ts { } 
TSHttpTxnClientPacketMarkSet.3ts { } TSHttpTxnClientPacketTosSet.3ts { } 
TSHttpTxnClientReqGet.3ts { } TSHttpTxnClientRespGet.3ts { } 
TSHttpTxnErrorBodySet.3ts { } TSHttpTxnIncomingAddrGet.3ts { } 
TSHttpTxnIntercept.3ts { } None:None: WARN

Build failed in Jenkins: ubuntu_13_10-master » gcc,ubuntu_13_10,release #821

2015-03-12 Thread jenkins
See 


--
[...truncated 3181 lines...]
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-L/usr/lib -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -L/usr/lib 
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -g -pipe -Wall -O3 -feliminate-unused-debug-symbols 
-fno-strict-aliasing -Werror -Wno-invalid-offsetof -mcx16 -module -shared 
-avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -L/usr/lib -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -mod

Build failed in Jenkins: ubuntu_14_10-master » gcc,ubuntu_14_10,release #300

2015-03-12 Thread jenkins
See 


--
[...truncated 3204 lines...]
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.9/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.9/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crtn.o  -O3 -mcx16  
 -Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file 
-Wl,.libs/cache-scan.exp -o .libs/cache-scan.so
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,file-1.so 
-Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre -lz 
-lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gn

Build failed in Jenkins: fedora_21-master » gcc,fedora_21,spdy #272

2015-03-12 Thread jenkins
See 


--
[...truncated 3192 lines...]
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: ( cd ".libs" && rm -f "file-1.la" && ln -s "../file-1.la" 
"file-1.la" )
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o output-header.la -rpath 

 output-header/output-header.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
 -lxml2
libtool: link: ( cd ".libs" && rm -f "hello.la" && ln -s "../hello.la" 
"hello.la" )
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o protocol.la -rpath 

 protocol/Protocol.lo protocol/TxnSM.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.9.2/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_6

Build failed in Jenkins: fedora_20-master » gcc,fedora_20,release #849

2015-03-12 Thread jenkins
See 


--
[...truncated 3176 lines...]
libtool: link: mv -f ".libs/cache-scan.expT" ".libs/cache-scan.exp"
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtbeginS.o  
cache-scan/.libs/cache-scan.o   -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl 
-lxml2 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../.. -lstdc++ 
-lm -lc -lgcc_s /usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtendS.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crtn.o  -O3 -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /usr/bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: echo "{ global:" > .libs/file-1.ver
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver -o .libs/hello.so
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -llzma -lz -lcrypt 
-lpthread -ldl  -lxml2
libtool: link: /usr/bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -lcap -lpcre 
-llzma -lz -lcrypt -lpthread -ldl -lxml2  -O3 -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: mv -f ".libs/intercept.expT" ".libs/intercept.exp"
/bin/sh ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter -g 
-pipe -Wall -O3 -feliminate-unused-debug-symbols -fno-strict-aliasing -Werror 
-mcx16 -module -shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
  -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -llzma -lz -lcrypt -lpthread 
-ldl  -lxml2
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64/crti.o 
/usr/lib/gcc/x86_64-redhat-linux/4.8.3/crtbeginS.o  intercept/.libs/intercept.o 
  -lcap -lpcre -llzma -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3 
-L/usr/lib/gcc/x86_64-redhat-linux/4.8.3/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -L/

Build failed in Jenkins: ubuntu_13_10-master » gcc,ubuntu_13_10,debug #821

2015-03-12 Thread jenkins
See 


--
[...truncated 3182 lines...]
libtool: link: c++  -fPIC -DPIC -shared -nostdlib 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crti.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtbeginS.o  cache-scan/.libs/cache-scan.o   
-L/usr/lib -lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../../lib -L/lib/x86_64-linux-gnu 
-L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib 
-L/usr/lib/gcc/x86_64-linux-gnu/4.8/../../.. -lstdc++ -lm -lc -lgcc_s 
/usr/lib/gcc/x86_64-linux-gnu/4.8/crtendS.o 
/usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crtn.o  -mcx16   
-Wl,-soname -Wl,cache-scan.so -Wl,-retain-symbols-file -Wl,.libs/cache-scan.exp 
-o .libs/cache-scan.so
/bin/bash ../libtool  --tag=CXX   --mode=link ccache c++ -Wunused-parameter 
-std=c++11 -ggdb3 -pipe -Wall -Werror -Wno-invalid-offsetof -mcx16 -module 
-shared -avoid-version -export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o intercept.la -rpath 

 intercept/intercept.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  -lxml2
libtool: link: /usr/bin/nm -B  file-1/.libs/file-1.o   | sed -n -e 's/^.*[  
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/file-1.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/file-1.exp" > ".libs/file-1.expT"
libtool: link: mv -f ".libs/file-1.expT" ".libs/file-1.exp"
libtool: link: ( cd ".libs" && rm -f "cache-scan.la" && ln -s 
"../cache-scan.la" "cache-scan.la" )
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o lifecycle-plugin.la -rpath 

 lifecycle-plugin/lifecycle-plugin.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link: echo "{ global:" > .libs/file-1.ver
/bin/bash ../libtool  --tag=CC   --mode=link ccache cc -Wunused-parameter 
-ggdb3 -pipe -Wall -Werror -mcx16 -module -shared -avoid-version 
-export-symbols-regex 
'^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$'
 -L/usr/lib -o null-transform.la -rpath 

 null-transform/null-transform.lo  -lcap -lpcre -lz -lcrypt -lpthread -ldl  
-lxml2
libtool: link:  cat .libs/file-1.exp | sed -e "s/\(.*\)/\1;/" >> 
.libs/file-1.ver
libtool: link: /usr/bin/nm -B  hello/.libs/hello.o   | sed -n -e 's/^.*[
 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/hello.exp
libtool: link:  echo "local: *; };" >> .libs/file-1.ver
libtool: link:  cc -shared  -fPIC -DPIC  file-1/.libs/file-1.o   -L/usr/lib 
-lcap -lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname 
-Wl,file-1.so -Wl,-version-script -Wl,.libs/file-1.ver -o .libs/file-1.so
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/hello.exp" > ".libs/hello.expT"
libtool: link: mv -f ".libs/hello.expT" ".libs/hello.exp"
libtool: link: echo "{ global:" > .libs/hello.ver
libtool: link:  cat .libs/hello.exp | sed -e "s/\(.*\)/\1;/" >> .libs/hello.ver
libtool: link: /usr/bin/nm -B  intercept/.libs/intercept.o   | sed -n -e 
's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][  
]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' | /bin/sed 
's/.* //' | sort | uniq > .libs/intercept.exp
libtool: link: /bin/grep -E -e 
"^(TSRemapInit|TSRemapDone|TSRemapDoRemap|TSRemapNewInstance|TSRemapDeleteInstance|TSRemapOSResponse|TSPluginInit)$"
 ".libs/intercept.exp" > ".libs/intercept.expT"
libtool: link:  echo "local: *; };" >> .libs/hello.ver
libtool: link:  cc -shared  -fPIC -DPIC  hello/.libs/hello.o   -L/usr/lib -lcap 
-lpcre -lz -lcrypt -lpthread -ldl -lxml2  -mcx16   -Wl,-soname -Wl,hello.so 
-Wl,-version-script -Wl,.libs/hello.ver

  1   2   >