1
0
Fork 0
mirror of https://github.com/kastenhq/kubestr.git synced 2024-12-14 11:57:56 +00:00

Additionaltests (#50)

* new tests

* adding index
This commit is contained in:
Sirish Bathina 2021-02-05 10:49:17 -10:00 committed by GitHub
parent 6f6eabf272
commit 0fb6507133
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

1
index.html Normal file
View file

@ -0,0 +1 @@
Hello world

View file

@ -2,6 +2,7 @@ package fio
var fioJobs = map[string]string{
DefaultFIOJob: testJob1,
"randrw": randReadWrite,
}
var testJob1 = `[global]
@ -28,4 +29,40 @@ readwrite=randwrite
time_based
ramp_time=2s
runtime=15s
[job3]
name=read_bw
bs=128K
iodepth=64
size=2G
readwrite=randread
time_based
ramp_time=2s
runtime=15s
[job4]
name=write_bw
bs=128k
iodepth=64
size=2G
readwrite=randwrite
time_based
ramp_time=2s
runtime=15s
`
var randReadWrite = `[global]
randrepeat=0
verify=0
ioengine=libaio
direct=1
gtod_reduce=1
[job1]
name=rand_readwrite
bs=4K
iodepth=64
size=4G
readwrite=randrw
rwmixread=75
time_based
ramp_time=2s
runtime=15s
`