| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- // 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_TOOLCHAIN_DRIVER_DRIVER_FILE_TEST_BASE_H_
- #define CARBON_TOOLCHAIN_DRIVER_DRIVER_FILE_TEST_BASE_H_
- #include <cstdio>
- #include <fstream>
- #include "llvm/ADT/SmallVector.h"
- #include "llvm/ADT/StringRef.h"
- #include "llvm/Support/MemoryBuffer.h"
- #include "llvm/Support/VirtualFileSystem.h"
- #include "testing/file_test/file_test_base.h"
- #include "toolchain/driver/driver.h"
- namespace Carbon::Testing {
- // Provides common test support for the driver. This is used by file tests in
- // phase subdirectories.
- class DriverFileTestBase : public FileTestBase {
- public:
- using FileTestBase::FileTestBase;
- auto Run(const llvm::SmallVector<llvm::StringRef>& test_args,
- const llvm::SmallVector<TestFile>& test_files,
- llvm::raw_pwrite_stream& stdout, llvm::raw_pwrite_stream& stderr)
- -> ErrorOr<bool> override {
- // Create the files in-memory.
- llvm::vfs::InMemoryFileSystem fs;
- for (const auto& test_file : test_files) {
- if (!fs.addFile(test_file.filename, /*ModificationTime=*/0,
- llvm::MemoryBuffer::getMemBuffer(test_file.content))) {
- return ErrorBuilder() << "File is repeated: " << test_file.filename;
- }
- }
- Driver driver(fs, stdout, stderr);
- return driver.RunCommand(test_args);
- }
- };
- } // namespace Carbon::Testing
- #endif // CARBON_TOOLCHAIN_DRIVER_DRIVER_FILE_TEST_BASE_H_
|