summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCNugteren <web@cedricnugteren.nl>2015-06-20 13:33:50 +0200
committerCNugteren <web@cedricnugteren.nl>2015-06-20 13:33:50 +0200
commit3ea3ba2beeab837e8d7c533746bd621daf1c09bd (patch)
tree8bce01e529f1ddca6a8af45b89a51f0e7f0935e6 /include
parentdfbc3365312a8ee1c100d7659e5814548192b48d (diff)
Distinguish between a short smoke test and a full test
Diffstat (limited to 'include')
-rw-r--r--include/internal/utilities.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/internal/utilities.h b/include/internal/utilities.h
index 600605c7..4cefdc4a 100644
--- a/include/internal/utilities.h
+++ b/include/internal/utilities.h
@@ -64,6 +64,9 @@ constexpr auto kArgStepSize = "step";
constexpr auto kArgNumSteps = "num_steps";
constexpr auto kArgNumRuns = "runs";
+// The client-specific arguments in string form
+constexpr auto kArgFullTest = "full_test";
+
// The common arguments in string form
constexpr auto kArgPlatform = "platform";
constexpr auto kArgDevice = "device";
@@ -105,6 +108,8 @@ struct Arguments {
size_t step = 1;
size_t num_steps = 0;
size_t num_runs = 10;
+ // Tester-specific arguments
+ bool full_test = false;
// Common arguments
size_t platform_id = 0;
size_t device_id = 0;