Apache Mesos
flags.hpp
Go to the documentation of this file.
1 // Licensed to the Apache Software Foundation (ASF) under one
2 // or more contributor license agreements. See the NOTICE file
3 // distributed with this work for additional information
4 // regarding copyright ownership. The ASF licenses this file
5 // to you under the Apache License, Version 2.0 (the
6 // "License"); you may not use this file except in compliance
7 // with the License. You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 
17 #ifndef __TESTS_FLAGS_HPP__
18 #define __TESTS_FLAGS_HPP__
19 
20 #include <string>
21 
22 #include <mesos/module/module.hpp>
23 
24 #include <stout/duration.hpp>
25 #include <stout/flags.hpp>
26 #include <stout/option.hpp>
27 
28 #include "logging/flags.hpp"
29 
30 namespace mesos {
31 namespace internal {
32 namespace tests {
33 
34 class Flags : public virtual logging::Flags
35 {
36 public:
37  Flags();
38 
39  bool verbose;
40  bool benchmark;
41  std::string source_dir;
42  std::string build_dir;
43  std::string docker;
44  std::string docker_socket;
48  std::string authenticators;
50 };
51 
52 // Global flags for running the tests.
53 extern Flags flags;
54 
55 } // namespace tests {
56 } // namespace internal {
57 } // namespace mesos {
58 
59 #endif // __TESTS_FLAGS_HPP__
Option< Modules > modules
Definition: flags.hpp:45
std::string build_dir
Definition: flags.hpp:42
std::string authenticators
Definition: flags.hpp:48
Definition: flags.hpp:29
Definition: duration.hpp:32
Option< std::string > modulesDir
Definition: flags.hpp:46
Definition: flags.hpp:34
Duration test_await_timeout
Definition: flags.hpp:49
Definition: agent.hpp:25
Option< std::string > isolation
Definition: flags.hpp:47
Definition: attributes.hpp:24
bool verbose
Definition: flags.hpp:39
std::string docker_socket
Definition: flags.hpp:44
std::string docker
Definition: flags.hpp:43
std::string source_dir
Definition: flags.hpp:41
bool benchmark
Definition: flags.hpp:40