source: testjes/timefcgi

Last change on this file was 10, checked in by willem, 11 years ago

willem

  • Property svn:executable set to *
File size: 282 bytes
Line 
1#!/bin/bash
2n=1000
3doitfast()
4{
5  for i in `seq $n` ; do
6    curl localhost:8080/cgi-bin/test1.$m?aap-noot-mies-wim  >/dev/null 2>&1
7  done
8}
9
10doit()
11{
12  for i in `seq $n` ; do
13    curl localhost:8080   > /dev/null 2>&1
14  done
15}
16
17time doit
18
19m=fcgi
20time doitfast
21m=cgi
22time doitfast
Note: See TracBrowser for help on using the repository browser.