forked from edgelesssys/edgelessdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.py
More file actions
18 lines (12 loc) · 647 Bytes
/
Copy pathserver.py
File metadata and controls
18 lines (12 loc) · 647 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import os
os.chdir('edgelessdb/build')
print('Current Working Directory is: ', os.getcwd())
os.system(". /opt/edgelessrt/share/openenclave/openenclaverc")
os.system("OE_SIMULATION=1 ./edb")
#Next, run test1 (10M inserts for 100 bytes char) 3 times, in every loop keep statistics in a var
#Then print the average of 3 statistics
#Next, run test2 (10M inserts for 1000 bytes char) 3 times, in every loop keep statistics in a var
#Then print the average of 3 statistics
#Next, run test3 (10M inserts for 10000 bytes char) 3 times, in every loop keep statistics in a var
#Then print the average of 3 statistics
#See results for all of the above