Changes between Version 3 and Version 4 of QtWebKitPerformanceUtilities


Ignore:
Timestamp:
Sep 29, 2009 10:18:46 PM (15 years ago)
Author:
zecke@selfish.org
Comment:

more command line invocation

Legend:

Unmodified
Added
Removed
Modified
  • QtWebKitPerformanceUtilities

    v3 v4  
    1414Running the tools:
    1515{{{
     16$ cd mirror/
    1617# Help of mirror
    1718$ ./mirror options [url]
     
    3435crawl_db.db
    3536
    36 # Create a hosts entry for the database
     37# Create a hosts entry for the database. This should be placed in /etc/hosts of the system running the tests.
    3738$ ./create_hosts 10.23.23.23
    383910.23.23.23     www.gmail.com
     
    4950The http_server application is a simple multi threaded HTTP server. It is looking up the requested URL in the specified database and then sending out the stored http header and content. Executing the ''http_server'' requires root privileges as it attempts to bind to port 80.
    5051
     52{{{
     53$ cd http_server
     54
     55# Starting the server. It attempts to bind to port 80.
     56$ sudo ./http_server ../mirror/crawl_db.db
     57Seving crawl db: '../mirror/crawl_db.db'
     58}}}
     59
    5160==== The memusgatestat utility ====
    5261
     
    5766The example launcher is provided as a simple testing tool to display one website. The to be displayed site can be requested on the command line.
    5867
     68{{{
     69$ cd launcher
     70$ ./launcher http://www.webkit.org
     71}}}
     72
    5973==== A stress testing application ====
    6074The stress testing application can be found in the '''robustness/''' directory. The application starts with one website and then picks any of the links on the website and navigates to this link. The goal of this application is to provide crashes, load failures, or creating a bad state inside WebCore.
     75
     76{{{
     77$ cd robustness
     78# Load various websites
     79$ ./robustness
     80("./robustness")
     81New target "http://www.digg.com"
     82New target "http://digg.com/space/Space_radiation_hits_record_high"
     83...
     84}}}
    6185
    6286=== Performance tools ===