source: examples/scaling_tests/haystack/fruit_prover/run_one @ a59bc06

mei_rt2mei_rt2_fix_1
Last change on this file since a59bc06 was 08b8da7, checked in by Mei <mei@…>, 12 years ago

1) rework examples directory with Makefile
2) update scaling with plotting scripts
3) add more doc in there

  • Property mode set to 100755
File size: 563 bytes
RevLine 
[373bf68]1#!/bin/sh
2
3
4noise=$1
5
[08b8da7]6if [ -z "$noise" ]; then
7    exit
8fi 
9
10echo "---running haystack fruit_prover $noise scaling"
11
[373bf68]12rm -rf fruit_$noise
13mkdir fruit_$noise
[08b8da7]14
[373bf68]15sed "s/#VAL#/$noise/" base/README > fruit_$noise/README
[08b8da7]16sed "s/#VAL#/$noise/" base/QUERY > fruit_$noise/run_query
[373bf68]17cp base/RESULT fruit_$noise/fruit.save
18cd fruit_$noise
19chmod +x README run_query
[08b8da7]20./README 1>/dev/null 2>&1
[373bf68]21time env ABAC_CN=1 ./run_query 1>fruit.tmp 2> fruit.time
22result=`diff fruit.tmp fruit.save 2>/dev/null`
23if [ "$result" = "" ]; then
24   echo "   PASSED"
25else   
26   echo "   ERROR"
27fi
28
29
Note: See TracBrowser for help on using the repository browser.