aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Interpreter/InterpreterTest.cpp
diff options
context:
space:
mode:
authorAbhinav Kumar <96587705+kr-2003@users.noreply.github.com>2025-08-13 00:26:02 +0530
committerGitHub <noreply@github.com>2025-08-12 20:56:02 +0200
commita02444fb69e61f4bb338cf454e3d2ebc98d905dd (patch)
treec0da2b0b4fb5b417a9c865d20b75120d8259d275 /clang/unittests/Interpreter/InterpreterTest.cpp
parentcd1c58ae5a9855470fa2cafd357793832b468a8a (diff)
downloadllvm-a02444fb69e61f4bb338cf454e3d2ebc98d905dd.zip
llvm-a02444fb69e61f4bb338cf454e3d2ebc98d905dd.tar.gz
llvm-a02444fb69e61f4bb338cf454e3d2ebc98d905dd.tar.bz2
Revert "[clang-repl] Enable extending `launchExecutor` (#152562)" (#153180)
Reverts #152562. Seems to be causing test failures on Solaris bot. Co-authored-by: kr-2003 <kumar.kr.abhinav@gmail.com>
Diffstat (limited to 'clang/unittests/Interpreter/InterpreterTest.cpp')
-rw-r--r--clang/unittests/Interpreter/InterpreterTest.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/clang/unittests/Interpreter/InterpreterTest.cpp b/clang/unittests/Interpreter/InterpreterTest.cpp
index 5d49089..768058b 100644
--- a/clang/unittests/Interpreter/InterpreterTest.cpp
+++ b/clang/unittests/Interpreter/InterpreterTest.cpp
@@ -15,17 +15,12 @@
#include "clang/AST/Decl.h"
#include "clang/AST/DeclGroup.h"
#include "clang/AST/Mangle.h"
-#include "clang/Basic/Version.h"
-#include "clang/Config/config.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/TextDiagnosticPrinter.h"
#include "clang/Interpreter/Interpreter.h"
-#include "clang/Interpreter/RemoteJITUtils.h"
#include "clang/Interpreter/Value.h"
#include "clang/Sema/Lookup.h"
#include "clang/Sema/Sema.h"
-#include "llvm/Support/Error.h"
-#include "llvm/TargetParser/Host.h"
#include "llvm/TargetParser/Host.h"
@@ -39,12 +34,6 @@ int Global = 42;
REPL_EXTERNAL_VISIBILITY int getGlobal() { return Global; }
REPL_EXTERNAL_VISIBILITY void setGlobal(int val) { Global = val; }
-#ifdef _WIN32
-#define STDIN_FILENO 0
-#define STDOUT_FILENO 1
-#define STDERR_FILENO 2
-#endif
-
namespace {
class InterpreterTest : public InterpreterTestBase {