Changes between Version 26 and Version 27 of BluePrint/Testing/TestSuite


Ignore:
Timestamp:
06/28/13 14:02:09 (12 years ago)
Author:
somayjain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BluePrint/Testing/TestSuite

    v26 v27  
    224224The test stats run by the CI Server during GSoC'13 can be found here - [https://docs.google.com/spreadsheet/ccc?key=0Av_ASzErqk_tdFVMMmtyOUw1YnF6VHlhN3JUZ3hOTEE#gid=0 Spreadsheet]
    225225
     226
     227===== Setup for Load tests =====
     228
     229Installed the following to do load testing using the CI Server -
     230
     231* erlang - Version : R16B01
     232* tsung-1.4.2
     233
     234For report generation -
     235* zlib-1.2.8
     236* libpng-1.2.8
     237* freetype-2.4.0
     238* gd-2.0.33
     239* gnuplot-4.0.0
     240
     241The installation script for installing these is here -
     242
     243{{{
     244
     245#!/bin/sh
     246
     247# Download erlang source
     248wget http://erlang.org/download/otp_src_R16B01.tar.gz
     249tar xzf otp_src_R16B01.tar.gz
     250cd otp_src_R16B01
     251
     252# Install erlang
     253./configure -prefix=/opt/erlang-R16B01
     254make
     255
     256# Add /opt/erlang-R16B01/bin to path
     257# in /etc/profile, add
     258echo "export PATH=$PATH:/opt/erlang-R16B01/bin" >> /etc/profile
     259
     260. /etc/profile
     261
     262cd ..
     263
     264# Download tsung.
     265wget http://tsung.erlang-projects.org/dist/tsung-1.4.2.tar.gz
     266tar zxf tsung-1.4.2.tar.gz
     267cd tsung-1.4.2
     268
     269# Install tsung
     270./configure --prefix=/opt/tsung-1.4.2
     271sudo make install
     272
     273# Add /opt/tsung-1.4.2/bin to path
     274# in /etc/profile, add
     275echo "export PATH=$PATH:/opt/tsung-1.4.2/bin" >> /etc/profile
     276
     277. /etc/profile
     278
     279sudo cpan Template
     280
     281cd ..
     282
     283# install zlib
     284wget zlib.net/zlib-1.2.8.tar.gz
     285tar xzf zlib-1.2.8.tar.gz
     286cd zlib-1.2.8
     287./configure --prefix=/opt/zlib-1.2.8
     288make test
     289sudo make install
     290
     291cd ..
     292
     293# install libpng
     294wget download.sourceforge.net/libpng/libpng-1.2.8.tar.gz
     295tar xzf libpng-1.2.8.tar.gz
     296cd libpng-1.2.8/
     297cp scripts/makefile.linux makefile
     298make
     299make test
     300sudo make install
     301
     302cd ..
     303
     304# install freetype
     305wget download.savannah.gnu.org/releases/freetype/freetype-2.4.0.tar.gz
     306tar xzf freetype-2.4.0.tar.gz
     307cd freetype-2.4.0
     308./configure --prefix=/opt/freetype-2.4.0
     309make
     310sudo make install
     311
     312cd ..
     313
     314# install gd for png support of gnuplot.
     315wget www12.tucows.com/linux/files/gd-2.0.33.tar.gz
     316tar xzf gd-2.0.33
     317cd gd-2.0.33
     318./configure --prefix=/opt/gd-2.0.33
     319sudo make install
     320
     321cd ..
     322
     323# Install gnuplot
     324wget http://sourceforge.net/projects/gnuplot/files/gnuplot/4.6.3/gnuplot-4.0.0.tar.gz
     325tar xzf gnuplot-4.0.0.tar.gz
     326cd gnuplot-4.0.0
     327./configure --prefix=/opt/gnuplot-4.4.0
     328sudo make install
     329
     330# Add /opt/gnuplot-4.4.0/bin to path
     331# in /etc/profile, add
     332echo "export PATH=$PATH:/opt/tsung-1.4.2/bin" >> /etc/profile
     333
     334. /etc/profile
     335}}}
    226336== Future Work ==
    227337