forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.cc
35 lines (29 loc) · 1.56 KB
/
main.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// NOLINT(namespace-envoy)
#include "envoy/thread/thread.h"
#include "test/test_common/environment.h"
#include "test/test_common/utility.h"
#include "test/test_runner.h"
#include "tools/cpp/runfiles/runfiles.h"
using bazel::tools::cpp::runfiles::Runfiles;
// The main entry point (and the rest of this file) should have no logic in it,
// this allows overriding by site specific versions of main.cc.
int main(int argc, char** argv) {
Envoy::TestEnvironment::initializeTestMain(argv[0]);
// Create a Runfiles object for runfiles lookup.
// https://github.com/bazelbuild/bazel/blob/master/tools/cpp/runfiles/runfiles_src.h#L32
std::string error;
std::unique_ptr<Runfiles> runfiles(Runfiles::Create(argv[0], &error));
RELEASE_ASSERT(Envoy::TestEnvironment::getOptionalEnvVar("NORUNFILES").has_value() ||
runfiles != nullptr,
error);
Envoy::TestEnvironment::setRunfiles(runfiles.get());
// Select whether to test only for IPv4, IPv6, or both. The default is to
// test for both. Options are {"v4only", "v6only", "all"}. Set
// ENVOY_IP_TEST_VERSIONS to "v4only" if the system currently does not support IPv6 network
// operations. Similarly set ENVOY_IP_TEST_VERSIONS to "v6only" if IPv4 has already been
// phased out of network operations. Set to "all" (or don't set) if testing both
// v4 and v6 addresses is desired. This feature is in progress and will be rolled out to all tests
// in upcoming PRs.
Envoy::TestEnvironment::setEnvVar("ENVOY_IP_TEST_VERSIONS", "all", 0);
return Envoy::TestRunner::RunTests(argc, argv);
}