/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to runbench.scripts

  • Committer: Suren A. Chilingaryan
  • Date: 2009-10-08 03:17:59 UTC
  • Revision ID: csa@dside.dyndns.org-20091008031759-u5ys779huye7feni
LibXML Pull Parser, FAXPP Parser, Mono security benchmark, multiple fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
#######################
 
3
# Benchmark set 1 #####
 
4
#######################
 
5
time=1
 
6
 
 
7
export ORA_NLS10=/opt/xml/xdk_c/nls/data
 
8
#export ORA_NLS33=/usr/share/xdk/nlsdata
 
9
#export ORA_XML_MESG=/usr/share/xdk/mesg
 
10
export PATH=$PATH:/usr/java/j2sdk1.4.2/bin
 
11
 
 
12
echo "******************** Parsing Benchmarks ********************"
 
13
echo
 
14
cd parse
 
15
for name in ruby-libxml.sh python-libxml.sh perl-libxml.sh php-libxml.sh lisp-libxml.sh libxml
 
16
do
 
17
    if ( [ -x $name ] && [ -f $name ] ); then
 
18
        echo "--->Running <$name> benchmarks:"
 
19
#       echo "-> xmlgen 4 KB"
 
20
#       ./$name `expr $time "*" 85000` xmlgen 4096
 
21
#       echo "-> xmlgen 256 KB"
 
22
#       ./$name `expr $time "*" 1000` xmlgen 262144
 
23
#       walk_tree=1 ./$name `expr $time "*" 1000` xmlgen 262144
 
24
        echo "-> xmark 4MB"
 
25
        ./$name `expr $time "*" 64` xmark 350
 
26
        walk_tree=1 ./$name `expr $time "*" 64` xmark 350
 
27
 
 
28
#       echo "-> opcgen 50 ( 3.5KB )"
 
29
#       ./$name `expr $time "*" 80000` opcgen 50
 
30
    fi
 
31
done
 
32
cd ..