manifest.h 698 B

123456789101112131415161718192021
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #ifndef CARBON_TESTING_FILE_TEST_MANIFEST_H_
  5. #define CARBON_TESTING_FILE_TEST_MANIFEST_H_
  6. #include <string>
  7. #include "llvm/ADT/SmallVector.h"
  8. namespace Carbon::Testing {
  9. // Returns the manifest path, which is provided by rules.bzl and manifest.cpp.
  10. // This is exposed separately so that the explorer sharding approach can use a
  11. // different implementation.
  12. auto GetFileTestManifest() -> llvm::SmallVector<std::string>;
  13. } // namespace Carbon::Testing
  14. #endif // CARBON_TESTING_FILE_TEST_MANIFEST_H_