-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
t/client-server: basic client/server test script
Currently there are only two sets of test cases: - check that fio correctly handles the global options dictionary in the JSON output with one or more servers with job files with and without global sections. - check that the [s,c]lat_percentiles options work for the "All clients" summary data. Signed-off-by: Vincent Fu <[email protected]>
- Loading branch information
1 parent
139b3be
commit 7a9dba5
Showing
8 changed files
with
576 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[global] | ||
ioengine=null | ||
time_based | ||
runtime=3s | ||
filesize=1T | ||
|
||
[test1] | ||
description=test1 | ||
|
||
[test2] | ||
description=test2 | ||
|
||
[test3] | ||
description=test3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[test1] | ||
description=test1 | ||
ioengine=null | ||
time_based | ||
runtime=3s | ||
filesize=1T | ||
|
||
[test2] | ||
description=test2 | ||
ioengine=null | ||
time_based | ||
runtime=3s | ||
filesize=1T | ||
|
||
[test3] | ||
description=test3 | ||
ioengine=null | ||
time_based | ||
runtime=3s | ||
filesize=1T |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[test] | ||
ioengine=null | ||
iodepth=2 | ||
filesize=1T | ||
time_based | ||
runtime=3s | ||
slat_percentiles=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[test] | ||
ioengine=null | ||
iodepth=2 | ||
filesize=1T | ||
time_based | ||
runtime=3s | ||
clat_percentiles=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[test] | ||
ioengine=null | ||
iodepth=2 | ||
filesize=1T | ||
time_based | ||
runtime=3s | ||
lat_percentiles=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[test] | ||
ioengine=null | ||
iodepth=2 | ||
filesize=1T | ||
time_based | ||
runtime=3s | ||
clat_percentiles=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[test] | ||
ioengine=null | ||
iodepth=2 | ||
filesize=1T | ||
time_based | ||
runtime=3s | ||
slat_percentiles=1 | ||
clat_percentiles=1 | ||
lat_percentiles=1 |