Re: [us...@httpd] Code coverage while running web server

2009-12-21 Thread Guruprasad Jakka
This was exactly what I was looking for. Thanks ! On Mon, Dec 21, 2009 at 1:44 PM, William A. Rowe Jr. wrote: > Krist van Besien wrote: > > On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG > wrote: > >> I am referring to the Apache code written in C. I would like to see if > all > >> the paths ar

Re: [us...@httpd] Code coverage while running web server

2009-12-21 Thread William A. Rowe Jr.
Krist van Besien wrote: > On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG > wrote: >> I am referring to the Apache code written in C. I would like to see if all >> the paths are exercised for - request processing, resource management, >> connection pooling, and configuration directives of the apac

Re: [us...@httpd] Code coverage while running web server

2009-12-20 Thread Guruprasad Jakka
I will trying posting it in the dev list. Thanks ! On Sun, Dec 20, 2009 at 4:45 AM, Jonathan Zuckerman wrote: > On Sun, Dec 20, 2009 at 1:42 AM, Jonathan Zuckerman > wrote: > > On Sun, Dec 20, 2009 at 12:37 AM, Krist van Besien > > wrote: > >> On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG > w

Re: [us...@httpd] Code coverage while running web server

2009-12-20 Thread Jonathan Zuckerman
On Sun, Dec 20, 2009 at 1:42 AM, Jonathan Zuckerman wrote: > On Sun, Dec 20, 2009 at 12:37 AM, Krist van Besien > wrote: >> On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG >> wrote: >>> I am referring to the Apache code written in C. I would like to see if all >>> the paths are exercised for - r

Re: [us...@httpd] Code coverage while running web server

2009-12-20 Thread Guruprasad JG
Ok, here is what I am trying to do. I have modified the kernel to track some of the system calls made by apache at run time. I want to ensure that all possible invocations of those system calls in any place in the apache code are invoked. This means that if I run gcov or any code coverage tool on t

Re: [us...@httpd] Code coverage while running web server

2009-12-20 Thread Jonathan Zuckerman
On Sun, Dec 20, 2009 at 12:37 AM, Krist van Besien wrote: > On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG > wrote: >> I am referring to the Apache code written in C. I would like to see if all >> the paths are exercised for - request processing, resource management, >> connection pooling, and c

Re: [us...@httpd] Code coverage while running web server

2009-12-20 Thread Krist van Besien
On Sat, Dec 19, 2009 at 1:30 AM, Guruprasad JG wrote: > I am referring to the Apache code written in C. I would like to see if all > the paths are exercised for - request processing, resource management, > connection pooling, and configuration directives of the apache core. This > would be more li

Re: [us...@httpd] Code coverage while running web server

2009-12-18 Thread Guruprasad JG
I am referring to the Apache code written in C. I would like to see if all the paths are exercised for - request processing, resource management, connection pooling, and configuration directives of the apache core. This would be more like functional testing of apache. On Fri, Dec 18, 2009 at 3:42

Re: [us...@httpd] Code coverage while running web server

2009-12-18 Thread Jonathan Zuckerman
On Thu, Dec 17, 2009 at 9:49 PM, Guruprasad JG wrote: > > I am working on a project which requires running httpd web server. I need to > ensure that all the important code paths are covered while the web server is > running.  I looked around for test scripts which can help in doing that, but > cou

[us...@httpd] Code coverage while running web server

2009-12-17 Thread Guruprasad JG
I am working on a project which requires running httpd web server. I need to ensure that all the important code paths are covered while the web server is running. I looked around for test scripts which can help in doing that, but couldn't find any. Are there any test suite or bunch of functional t