Skip to content

Commit d0c680c

Browse files
committed
Introduce mull-reporter for offline report analysis
1 parent 0a8f775 commit d0c680c

File tree

87 files changed

+530
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+530
-116
lines changed

include/mull/MutationPoint.h

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class MutationPoint {
7272
~MutationPoint() = default;
7373

7474
void setEndLocation(int line, int column);
75+
void updateIdentifier();
7576

7677
Mutator *getMutator();
7778
Mutator *getMutator() const;

include/mull/MutationResult.h

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include "mull/ExecutionResult.h"
4+
#include "mull/Mutant.h"
45
#include <utility>
56

67
namespace mull {
@@ -23,5 +24,15 @@ class MutationResult {
2324
ExecutionResult result;
2425
Mutant *mutant;
2526
};
27+
struct MutationResultComparator {
28+
bool operator()(std::unique_ptr<MutationResult> &lhs, std::unique_ptr<MutationResult> &rhs) {
29+
return operator()(*lhs, *rhs);
30+
}
31+
32+
bool operator()(MutationResult &lhs, MutationResult &rhs) {
33+
MutantComparator cmp;
34+
return cmp(*lhs.getMutant(), *rhs.getMutant());
35+
}
36+
};
2637

2738
} // namespace mull

include/mull/Reporters/SQLiteReporter.h

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#include "Reporter.h"
22

3+
#include "mull/ExecutionResult.h"
4+
35
#include <memory>
46
#include <string>
57
#include <unordered_map>
@@ -10,6 +12,11 @@ namespace mull {
1012
class Result;
1113
class Diagnostics;
1214

15+
struct RawReport {
16+
std::unordered_map<std::string, std::string> info;
17+
std::unordered_map<std::string, std::vector<mull::ExecutionResult>> executionResults;
18+
};
19+
1320
class SQLiteReporter : public Reporter {
1421
public:
1522
explicit SQLiteReporter(Diagnostics &diagnostics, const std::string &reportDir = "",
@@ -19,6 +26,7 @@ class SQLiteReporter : public Reporter {
1926
void reportResults(const Result &result) override;
2027

2128
std::string getDatabasePath();
29+
static RawReport loadRawReport(const std::string &databasePath);
2230

2331
private:
2432
Diagnostics &diagnostics;

lib/MutantRunner.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,7 @@ MutantRunner::runMutants(const std::string &executable, const std::vector<std::s
3939
diagnostics, "Running mutants", mutants, mutationResults, std::move(tasks));
4040
mutantRunner.execute();
4141

42+
diagnostics.debug("Done running mutants");
43+
4244
return mutationResults;
4345
}

lib/MutationPoint.cpp

+11-6
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ MutationPoint::MutationPoint(Mutator *mutator, irm::IRMutation *irMutator,
7575
bitcode(m), originalFunction(instruction->getFunction()), mutatedFunction(nullptr),
7676
sourceLocation(SourceLocation::locationFromInstruction(instruction)), irMutator(irMutator),
7777
endLocation(SourceLocation::nullSourceLocation()) {
78-
userIdentifier = mutator->getUniqueIdentifier() + ':' + sourceLocation.filePath + ':' +
79-
std::to_string(sourceLocation.line) + ':' +
80-
std::to_string(sourceLocation.column);
78+
updateIdentifier();
8179
}
8280

8381
Mutator *MutationPoint::getMutator() {
@@ -117,21 +115,28 @@ void MutationPoint::setEndLocation(int line, int column) {
117115
sourceLocation.filePath,
118116
line,
119117
column);
118+
updateIdentifier();
119+
}
120+
121+
void MutationPoint::updateIdentifier() {
122+
userIdentifier = mutator->getUniqueIdentifier() + ':' + sourceLocation.filePath + ':' +
123+
std::to_string(sourceLocation.line) + ':' +
124+
std::to_string(sourceLocation.column) + ':' + std::to_string(endLocation.line) +
125+
':' + std::to_string(endLocation.column);
120126
}
121127

122128
void MutationPoint::recordMutation() {
123129
assert(originalFunction != nullptr);
124130
llvm::Module *module = originalFunction->getParent();
125-
std::string encoding = getUserIdentifier() + ':' + std::to_string(endLocation.line) + ':' +
126-
std::to_string(endLocation.column);
131+
std::string encoding = getUserIdentifier();
127132
llvm::Constant *constant =
128133
llvm::ConstantDataArray::getString(module->getContext(), llvm::StringRef(encoding));
129134
auto *global = new llvm::GlobalVariable(*module,
130135
constant->getType(),
131136
true,
132137
llvm::GlobalVariable::InternalLinkage,
133138
constant,
134-
this->getUserIdentifier());
139+
encoding);
135140
#if defined __APPLE__
136141
global->setSection("__mull,.mull_mutants");
137142
#else

lib/Reporters/SQLiteReporter.cpp

+67-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#include "mull/Bitcode.h"
44
#include "mull/Diagnostics/Diagnostics.h"
5-
#include "mull/ExecutionResult.h"
65
#include "mull/Result.h"
76

87
#include <llvm/IR/DebugInfoMetadata.h>
@@ -82,13 +81,15 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
8281
sqlite3_reset(insertInformationStmt);
8382
}
8483

85-
const char *query = "INSERT INTO mutant VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10)";
84+
const char *query =
85+
"INSERT INTO mutant VALUES (?1, ?2, ?3, ?4, ?5, ?6, ?7, ?8, ?9, ?10, ?11, ?12)";
8686
sqlite3_stmt *stmt;
8787
sqlite3_prepare(database, query, -1, &stmt, nullptr);
8888

8989
for (auto &mutationResult : result.getMutationResults()) {
9090
auto mutant = mutationResult->getMutant();
91-
auto &location = mutant->getSourceLocation();
91+
auto location = mutant->getSourceLocation();
92+
auto endLocation = mutant->getEndLocation();
9293

9394
ExecutionResult execution = mutationResult->getExecutionResult();
9495

@@ -100,11 +101,12 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
100101
sqlite3_bind_text(stmt, index++, location.directory.c_str(), -1, SQLITE_TRANSIENT);
101102
sqlite3_bind_int(stmt, index++, location.line);
102103
sqlite3_bind_int(stmt, index++, location.column);
104+
sqlite3_bind_int(stmt, index++, endLocation.line);
105+
sqlite3_bind_int(stmt, index++, endLocation.column);
103106
sqlite3_bind_int(stmt, index++, execution.status);
104107
sqlite3_bind_int64(stmt, index++, execution.runningTime);
105108
sqlite3_bind_text(stmt, index++, execution.stdoutOutput.c_str(), -1, SQLITE_TRANSIENT);
106109
sqlite3_bind_text(stmt, index++, execution.stderrOutput.c_str(), -1, SQLITE_TRANSIENT);
107-
108110
sqlite3_step(stmt);
109111
sqlite3_clear_bindings(stmt);
110112
sqlite3_reset(stmt);
@@ -118,20 +120,22 @@ void mull::SQLiteReporter::reportResults(const Result &result) {
118120
}
119121

120122
static const char *CreateTables = R"CreateTables(
121-
CREATE TABLE mutant (
123+
CREATE TABLE IF NOT EXISTS mutant (
122124
mutant_id TEXT,
123125
mutator TEXT,
124126
filename TEXT,
125127
directory TEXT,
126128
line_number INT,
127129
column_number INT,
130+
end_line_number INT,
131+
end_column_number INT,
128132
status INT,
129133
duration INT,
130134
stdout TEXT,
131135
stderr TEXT
132136
);
133137
134-
CREATE TABLE information (
138+
CREATE TABLE IF NOT EXISTS information (
135139
key TEXT,
136140
value TEXT
137141
);
@@ -140,3 +144,60 @@ CREATE TABLE information (
140144
static void createTables(mull::Diagnostics &diagnostics, sqlite3 *database) {
141145
sqlite_exec(diagnostics, database, CreateTables);
142146
}
147+
148+
RawReport mull::SQLiteReporter::loadRawReport(const std::string &databasePath) {
149+
sqlite3 *database;
150+
sqlite3_open(databasePath.c_str(), &database);
151+
152+
std::unordered_map<std::string, std::string> information;
153+
sqlite3_stmt *selectInfoStmt;
154+
sqlite3_prepare(database, "select * from information", -1, &selectInfoStmt, nullptr);
155+
while (sqlite3_step(selectInfoStmt) == SQLITE_ROW) {
156+
auto key = sqlite3_column_text(selectInfoStmt, 0);
157+
auto value = sqlite3_column_text(selectInfoStmt, 1);
158+
information[reinterpret_cast<char const *>(key)] = reinterpret_cast<char const *>(value);
159+
}
160+
sqlite3_finalize(selectInfoStmt);
161+
162+
std::unordered_map<std::string, std::vector<ExecutionResult>> mapping;
163+
164+
sqlite3_stmt *selectMutantsStmt;
165+
sqlite3_prepare(database, "select * from mutant", -1, &selectMutantsStmt, nullptr);
166+
while (sqlite3_step(selectMutantsStmt) == SQLITE_ROW) {
167+
int index = 0;
168+
std::string mutant_id =
169+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
170+
std::string mutator =
171+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
172+
std::string filename =
173+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
174+
std::string directory =
175+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
176+
auto line_number = sqlite3_column_int(selectInfoStmt, index++);
177+
auto column_number = sqlite3_column_int(selectInfoStmt, index++);
178+
auto end_line_number = sqlite3_column_int(selectInfoStmt, index++);
179+
auto end_column_number = sqlite3_column_int(selectInfoStmt, index++);
180+
auto status = sqlite3_column_int(selectInfoStmt, index++);
181+
auto duration = sqlite3_column_int64(selectInfoStmt, index++);
182+
std::string stdout_string =
183+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
184+
std::string stderr_string =
185+
reinterpret_cast<char const *>(sqlite3_column_text(selectInfoStmt, index++));
186+
187+
ExecutionResult executionResult;
188+
executionResult.runningTime = duration;
189+
executionResult.stdoutOutput = stdout_string;
190+
executionResult.stderrOutput = stderr_string;
191+
executionResult.status = static_cast<ExecutionStatus>(status);
192+
193+
SourceLocation location(directory, filename, directory, filename, line_number, column_number);
194+
SourceLocation endLocation(
195+
directory, filename, directory, filename, end_line_number, end_column_number);
196+
mapping[mutant_id].push_back(executionResult);
197+
}
198+
sqlite3_finalize(selectMutantsStmt);
199+
200+
sqlite3_close(database);
201+
202+
return { .info = std::move(information), .executionResults = std::move(mapping) };
203+
}

tests/integration/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ set(TEST_CXX_FLAGS
1717
)
1818

1919
set(LIT_COMMAND
20-
PATH_TO_LLVM=${PATH_TO_LLVM} LLVM_VERSION_MAJOR=${LLVM_VERSION_MAJOR}
20+
LLVM_VERSION_MAJOR=${LLVM_VERSION_MAJOR}
2121
CURRENT_DIR=${CMAKE_CURRENT_SOURCE_DIR}
22+
mull_reporter=$<TARGET_FILE:mull-reporter-${LLVM_VERSION_MAJOR}>
2223
mull_runner=$<TARGET_FILE:mull-runner-${LLVM_VERSION_MAJOR}>
2324
mull_frontend_cxx=$<TARGET_FILE:mull-cxx-frontend-${LLVM_VERSION_MAJOR}>
2425
mull_ir_frontend=$<TARGET_FILE:mull-cxx-ir-frontend-${LLVM_VERSION_MAJOR}>

tests/integration/cxx-frontend/00-sandbox/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2424
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2525
2626
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
27-
RUN: (env "cxx_add_to_sub:%s:6:12"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
27+
RUN: (env "cxx_add_to_sub:%s:6:12:6:13"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2828
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
29-
RUN: (env "cxx_add_to_sub:%s:6:12"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
29+
RUN: (env "cxx_add_to_sub:%s:6:12:6:13"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3030
3131
STANDALONE_WITHOUT_MUTATION:NORMAL
3232
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/01-return-expr/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2323
RUN: %clang_cxx -g %sysroot %pass_mull_ir_frontend %s -o %s-ir.exe
2424
2525
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
26-
RUN: (env "cxx_add_to_sub:%s:6:12"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
26+
RUN: (env "cxx_add_to_sub:%s:6:12:6:13"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2727
2828
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
29-
RUN: (env "cxx_add_to_sub:%s:6:12"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
29+
RUN: (env "cxx_add_to_sub:%s:6:12:6:13"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3030
3131
STANDALONE_WITHOUT_MUTATION:NORMAL
3232
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/02-paren-expr/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2323
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2424
2525
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
26-
RUN: (env "cxx_add_to_sub:%s:6:13"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
26+
RUN: (env "cxx_add_to_sub:%s:6:13:6:14"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2727
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
28-
RUN: (env "cxx_add_to_sub:%s:6:13"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
28+
RUN: (env "cxx_add_to_sub:%s:6:13:6:14"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2929
3030
STANDALONE_WITHOUT_MUTATION:NORMAL
3131
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/03-implicit-cast-expr/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2727
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2828
2929
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
30-
RUN: (env "cxx_add_to_sub:%s:6:9"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
30+
RUN: (env "cxx_add_to_sub:%s:6:9:6:10"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3131
3232
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
33-
RUN: (env "cxx_add_to_sub:%s:6:9"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
33+
RUN: (env "cxx_add_to_sub:%s:6:9:6:10"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3434
3535
STANDALONE_WITHOUT_MUTATION:NORMAL
3636
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/05-var-decl/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2424
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2525
2626
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
27-
RUN: (env "cxx_add_to_sub:%s:6:13"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
27+
RUN: (env "cxx_add_to_sub:%s:6:13:6:14"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2828
2929
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
30-
RUN: (env "cxx_add_to_sub:%s:6:13"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
30+
RUN: (env "cxx_add_to_sub:%s:6:13:6:14"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3131
3232
STANDALONE_WITHOUT_MUTATION:NORMAL
3333
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/20-parent-is-binary-operator-lhs/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2828
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2929
3030
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
31-
RUN: (env "cxx_add_to_sub:%s:6:33"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
31+
RUN: (env "cxx_add_to_sub:%s:6:33:6:34"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3232
3333
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
34-
RUN: (env "cxx_add_to_sub:%s:6:33"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
34+
RUN: (env "cxx_add_to_sub:%s:6:33:6:34"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3535
3636
STANDALONE_WITHOUT_MUTATION:NORMAL
3737
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/21-parent-is-binary-operator-rhs/sample.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s-ast.exe
2323
RUN: %clang_cxx %sysroot -g %pass_mull_ir_frontend %s -o %s-ir.exe
2424
2525
RUN: %s-ast.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
26-
RUN: (env "cxx_add_to_sub:%s:6:18"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
26+
RUN: (env "cxx_add_to_sub:%s:6:18:6:19"=1 %s-ast.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2727
2828
RUN: %s-ir.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
29-
RUN: (env "cxx_add_to_sub:%s:6:18"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
29+
RUN: (env "cxx_add_to_sub:%s:6:18:6:19"=1 %s-ir.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
3030
3131
STANDALONE_WITHOUT_MUTATION:NORMAL
3232
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/30-parent-is-conditional-operator-cond/sample.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int main() {
2222
RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s.exe
2323
2424
RUN: %s.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
25-
RUN: (env "cxx_logical_or_to_and:%s:6:12"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
25+
RUN: (env "cxx_logical_or_to_and:%s:6:12:6:14"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2626
2727
STANDALONE_WITHOUT_MUTATION:NORMAL
2828
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/31-parent-is-conditional-operator-rhs/sample.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int main() {
2222
RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s.exe
2323
2424
RUN: %s.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
25-
RUN: (env "cxx_logical_or_to_and:%s:6:28"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
25+
RUN: (env "cxx_logical_or_to_and:%s:6:28:6:30"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2626
2727
STANDALONE_WITHOUT_MUTATION:NORMAL
2828
STANDALONE_WITH_MUTATION:MUTATED

tests/integration/cxx-frontend/binary_operator/32-parent-is-conditional-operator-lhs/sample.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ int main() {
2222
RUN: %clang_cxx %sysroot -fplugin=%mull_frontend_cxx %s -o %s.exe
2323
2424
RUN: %s.exe | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITHOUT_MUTATION
25-
RUN: (env "cxx_logical_or_to_and:%s:6:20"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
25+
RUN: (env "cxx_logical_or_to_and:%s:6:20:6:22"=1 %s.exe || true) | %filecheck %s --dump-input=fail --strict-whitespace --match-full-lines --check-prefix=STANDALONE_WITH_MUTATION
2626
2727
STANDALONE_WITHOUT_MUTATION:NORMAL
2828
STANDALONE_WITH_MUTATION:MUTATED

0 commit comments

Comments
 (0)