llvm-mirror/tools/llvm-reduce/TestRunner.cpp
Diego Trevino Ferrer 3fc8dbf0ee Added Delta IR Reduction Tool
Summary: Tool parses input IR file, and runs the delta debugging algorithm to reduce the functions inside the input file.

Reviewers: alexshap, chandlerc

Subscribers: mgorny, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D63672

llvm-svn: 368071
2019-08-06 18:59:11 +00:00

33 lines
1.1 KiB
C++

#include "TestRunner.h"
using namespace llvm;
TestRunner::TestRunner(StringRef TestName, std::vector<std::string> TestArgs,
StringRef ReducedFilepath, SmallString<128> TmpDirectory)
: TestName(TestName), TestArgs(TestArgs), ReducedFilepath(ReducedFilepath),
TmpDirectory(TmpDirectory) {}
/// Runs the interestingness test, passes file to be tested as first argument
/// and other specified test arguments after that.
int TestRunner::run(StringRef Filename) {
std::vector<StringRef> ProgramArgs;
ProgramArgs.push_back(TestName);
ProgramArgs.push_back(Filename);
for (unsigned I = 0, E = TestArgs.size(); I != E; ++I)
ProgramArgs.push_back(TestArgs[I].c_str());
StringRef SR = "";
Optional<StringRef> Redirects[3] = {SR, SR, SR}; // STDIN, STDOUT, STDERR
int Result = sys::ExecuteAndWait(TestName, ProgramArgs, None, Redirects);
if (Result < 0) {
Error E = make_error<StringError>("Error running interesting-ness test\n",
inconvertibleErrorCode());
outs() << toString(std::move(E));
exit(1);
}
return !Result;
}