From 19d701ddf07d855128ded0cf2b573ce468e3bdd6 Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Wed, 20 Jan 2016 01:10:01 +0000 Subject: Removing Suricata and Audit from source repo, and updated build.sh to avoid building suricata. Will re-address this in C release via tar balls. Change-Id: I3710076f8b7f3313cb3cb5260c4eb0a6834d4f6e Signed-off-by: Ashlee Young --- .../plot-csv-small-pcap-file-stream-vs-http.sh | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100755 framework/src/suricata/qa/gnuplot/plot-csv-small-pcap-file-stream-vs-http.sh (limited to 'framework/src/suricata/qa/gnuplot/plot-csv-small-pcap-file-stream-vs-http.sh') diff --git a/framework/src/suricata/qa/gnuplot/plot-csv-small-pcap-file-stream-vs-http.sh b/framework/src/suricata/qa/gnuplot/plot-csv-small-pcap-file-stream-vs-http.sh deleted file mode 100755 index 81a53136..00000000 --- a/framework/src/suricata/qa/gnuplot/plot-csv-small-pcap-file-stream-vs-http.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash -# -# -if [ "$1" = "" ]; then - echo "call with location of csv file." - exit 1; -fi - -DRAW="boxes" -gnuplot << EOF -set datafile separator "," -set terminal png size 1024,768 -set output "$1.png" -set title "$1 ticks" -set key autotitle columnhead -set yrange [:] -set xrange [:] -set logscale y -plot "$1" using :32 with $DRAW, \ - "" using :54 with $DRAW, \ - "" using :42 with points -EOF -RESULT=$? -if [ "$RESULT" = "0" ]; then - echo "PNG $1.png written" -fi -- cgit 1.2.3-korg