mirror of
https://github.com/apple/foundationdb.git
synced 2025-04-20 04:34:30 +08:00
Testspec is currently very permissive in very misleading ways. In particular, the tester parser itself will swallow K=V settings and apply them at the test level, which breaks how a person would expect the scoping to work. Other settings apply to the entire simulation run globally, but appear to be workload specific. Even further, others affect simulation cluster creation or test harness behavior, but can again be set anywhere in a testspec. This changes testspec parsing to error if a setting that applies globally is anywhere but the top of the file, or if a setting that applies test-wide is applied to a workload instead of a test.
11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
testTitle=RandomReadWriteTest
|
|
testName=ReadWrite
|
|
testDuration=10.0
|
|
transactionsPerSecond=2500
|
|
writesPerTransactionA=0
|
|
readsPerTransactionA=10
|
|
alpha=0
|
|
nodeCount=50000
|
|
valueBytes=16
|
|
discardEdgeMeasurements=false
|