mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-25 14:30:12 +01:00
This shifts explorer's file_test to use ExplorerMain in order to be able to pass arguments similar to how the command line would. It also means that various output wrapping done by the command line is shared, no longer copied by file_test. In order to help make this work, I plugged vfs::FileSystem into explorer, similar to how we're doing this on the toolchain side (might try to share more code later). I was having trouble getting an overlay working, I think due to how paths are specified -- but due to the issues in fixing this, I'm just loading the prelude into the InMemoryFilesystem for now. Under this approach, I'm unifying more of the file versus string handling. I think we should shift towards an approach where, like toolchain code, anyone trying to use Explorer should use a vfs implementation to supply code. This should reduce the number of distinct code paths which we're maintaining/testing. Short-term, this allows the trace testdata to be merged into file_test with less special casing, using ARGS:. Long-term, it means that the file_test knows the ARGS to pass to generate checks to match against, which is the direction I'm planning for autoupdate.
57 lines
1.7 KiB
C++
57 lines
1.7 KiB
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
|
|
|
|
#include "explorer/parse_and_execute/parse_and_execute.h"
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
namespace Carbon::Testing {
|
|
namespace {
|
|
|
|
using ::testing::MatchesRegex;
|
|
|
|
TEST(ParseAndExecuteTest, Recursion) {
|
|
llvm::vfs::InMemoryFileSystem fs;
|
|
llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> prelude =
|
|
llvm::MemoryBuffer::getFile("explorer/data/prelude.carbon");
|
|
ASSERT_FALSE(prelude.getError()) << prelude.getError().message();
|
|
ASSERT_TRUE(fs.addFile("prelude.carbon", /*ModificationTime=*/0,
|
|
std::move(*prelude)));
|
|
|
|
std::string source = R"(
|
|
package Test api;
|
|
fn Main() -> i32 {
|
|
return
|
|
)";
|
|
// A high depth that's expected to complete in a few seconds.
|
|
static constexpr int Depth = 50000;
|
|
for (int i = 0; i < Depth; ++i) {
|
|
source += "if true then\n";
|
|
}
|
|
source += "1\n";
|
|
for (int i = 0; i < Depth; ++i) {
|
|
source += "else 0\n";
|
|
}
|
|
source += R"(
|
|
;
|
|
}
|
|
)";
|
|
ASSERT_TRUE(fs.addFile("test.carbon", /*ModificationTime=*/0,
|
|
llvm::MemoryBuffer::getMemBuffer(source)));
|
|
|
|
TraceStream trace_stream;
|
|
auto err =
|
|
ParseAndExecute(fs, "prelude.carbon", "test.carbon",
|
|
/*parser_debug=*/false, &trace_stream, &llvm::nulls());
|
|
ASSERT_FALSE(err.ok());
|
|
// Don't expect any particular source location for the error.
|
|
EXPECT_THAT(err.error().message(),
|
|
MatchesRegex("RUNTIME ERROR:.* stack overflow: too many "
|
|
"interpreter actions on stack"));
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon::Testing
|