From 5529c3bda6def7535310d13c1427feb8d369f65d Mon Sep 17 00:00:00 2001 From: virtubox Date: Wed, 24 Jan 2018 11:39:21 +0000 Subject: [PATCH] update configuration logs --- sysbench.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sysbench.sh b/sysbench.sh index 2b5501c..c415845 100644 --- a/sysbench.sh +++ b/sysbench.sh @@ -1,6 +1,8 @@ #!/bin/bash -sysbench --test=cpu --cpu-max-prime=20000 run > sysbench.log +echo "" > sysbench.log + +sysbench --test=cpu --cpu-max-prime=20000 run >> sysbench.log sysbench --test=fileio --file-total-size=5G prepare &>/dev/null -sysbench --test=fileio --file-total-size=5G --file-test-mode=rndrw --init-rng=on --max-time=300 --max-requests=0 run > sysbench.log +sysbench --test=fileio --file-total-size=5G --file-test-mode=rndrw --init-rng=on --max-time=300 --max-requests=0 run >> sysbench.log sysbench --test=fileio --file-total-size=5G cleanup &>/dev/null