source: trunk/runtiming @ 26

Last change on this file since 26 was 7, checked in by willem, 11 years ago

willem

  • Property svn:executable set to *
File size: 295 bytes
Line 
1#!/bin/bash
2doit()
3{
4  seq 100 | stopos add
5  while true ; do
6    stopos next
7    if [ "$STOPOS_RC" != OK ]; then
8      break
9    fi
10    stopos remove
11  done
12}
13module load stopos
14for p in gdbm flat files mysql ; do
15  export STOPOS_PROT=$p
16  echo  $STOPOS_PROT :
17  stopos create
18  time doit
19done
Note: See TracBrowser for help on using the repository browser.