mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Consolidates both main libraries into `//testing/base`, and factors out the exe path handling for benchmarks and unit tests into a common library to remove duplication. Refactors how that logic is managed to be cleaner and avoid a confusing bool that came up in code review. Updates all the tests and benchmarks that use these. I still need to update other benchmarks to use the same main, but I wanted to keep this PR somewhat minimal. This also fixes a bug noticed in passing that the compilation benchmark didn't have the required dependency on the benchmark library itself, just the benchmark main library.
27 lines
934 B
C++
27 lines
934 B
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef CARBON_TESTING_BASE_GLOBAL_EXE_PATH_H_
|
|
#define CARBON_TESTING_BASE_GLOBAL_EXE_PATH_H_
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
// When using the Carbon `main` function for GoogleTest, we export some extra
|
|
// information about the test binary that can be accessed with this header.
|
|
|
|
namespace Carbon::Testing {
|
|
|
|
// The executable path of the test binary.
|
|
auto GetExePath() -> llvm::StringRef;
|
|
|
|
// Sets the executable path of a test binary from its `argv[0]`.
|
|
//
|
|
// This function must only be called once for an execution, and before any
|
|
// callers to `GetExePath`. Typically, it is called from within `main`.
|
|
auto SetExePath(const char* argv_zero) -> void;
|
|
|
|
} // namespace Carbon::Testing
|
|
|
|
#endif // CARBON_TESTING_BASE_GLOBAL_EXE_PATH_H_
|