summaryrefslogtreecommitdiff
path: root/constants/constants.go
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2023-12-13 19:56:03 -0500
committerWill Hawkins <[email protected]>2024-01-04 19:10:37 -0500
commitf3990f950277c2f61e0e1811b4b8a81fc0219da4 (patch)
tree6969e4ac2c4e94e75fe2e0c5581da5c07785dce8 /constants/constants.go
parent552f01ad73248474553ce471695745db58c862ea (diff)
[Feature] Support for testing upload/download in parallel
Use the `--rpm.parallel` to test in parallel mode. The default testing mode is serial. Signed-off-by: Will Hawkins <[email protected]>
Diffstat (limited to 'constants/constants.go')
-rw-r--r--constants/constants.go9
1 files changed, 8 insertions, 1 deletions
diff --git a/constants/constants.go b/constants/constants.go
index 8621de8..81c932e 100644
--- a/constants/constants.go
+++ b/constants/constants.go
@@ -14,7 +14,11 @@
package constants
-import "time"
+import (
+ "time"
+
+ "github.com/network-quality/goresponsiveness/executor"
+)
var (
// The initial number of load-generating connections when attempting to saturate the network.
@@ -38,6 +42,9 @@ var (
DefaultInsecureSkipVerify bool = true
DefaultL4SCongestionControlAlgorithm string = "prague"
+
+ // The default execution policy for running a test (serial)
+ DefaultTestExecutionPolicy = executor.Serial
)
type SpecParametersCliOptions struct {