/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 create/oracle_dom2

  • Committer: Suren A. Chilingaryan
  • Date: 2009-02-16 09:27:17 UTC
  • Revision ID: csa@dside.dyndns.org-20090216092717-wipyvaaw2srxhgns
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/bash
 
2
# Usage:
 
3
#       ./oracle_dom2 <iterations> <size>
 
4
 
 
5
ORACLE_CLASSPATH=`cat ../Makefile.in | grep ORACLE_CLASSPATH | sed -e s/.*_CLASSPATH[\ \t]*=[\ \t]*//`
 
6
 
 
7
java  -Xms4000m -classpath $ORACLE_CLASSPATH oracle_dom2 $1 $2
 
8