diff options
author | Nauman_Ahad <Nauman_Ahad@dell.com> | 2015-11-09 11:59:54 +0500 |
---|---|---|
committer | Nauman_Ahad <Nauman_Ahad@dell.com> | 2015-11-09 11:59:54 +0500 |
commit | 735123d3a10789e771f621f3a0d8a299903063a0 (patch) | |
tree | 7f76bd653298ff19bad59eb1fd8ec7a643bf90e0 /benchmarks/playbooks/result_transform/dpi/dpi_average.sh | |
parent | 95bf8a8c96b2be94512e042f3f3c82edcbebf84d (diff) |
Ansible compute benchmarks playbooks with system Info & result transform
Updated playbooks for SSL,DPI,Dhrystone,Whetstone
Also included python scripts for system information collection(compute
benchmarks) and result transformation into JSON files for the aforementioned
compute benchmarks
JIRA:QTIP-20
JIRA:QTIP-36
JIRA:QTIP-37
JIRA:QTIP-39
JIRA:QTIP-40
JIRA:QTIP-52
Change-Id: I3c099d71d8316c15f0619313bd4f9829a58f6e33
Signed-off-by: Nauman_Ahad <Nauman_Ahad@dell.com>
Diffstat (limited to 'benchmarks/playbooks/result_transform/dpi/dpi_average.sh')
-rw-r--r-- | benchmarks/playbooks/result_transform/dpi/dpi_average.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/benchmarks/playbooks/result_transform/dpi/dpi_average.sh b/benchmarks/playbooks/result_transform/dpi/dpi_average.sh new file mode 100644 index 00000000..405d3ff6 --- /dev/null +++ b/benchmarks/playbooks/result_transform/dpi/dpi_average.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +COUNTER=0 +WDIR=$PWD +while [ $COUNTER -lt 10 ]; do + + echo $WDIR + $( ./ndpiReader -i test.pcap >> $WDIR/dpi_dump.txt ) + let COUNTER=COUNTER+1 + echo "Run number: $COUNTER" + +done + + |