Skip to content

Commit 0bcfaba

Browse files
committed
C++: Accept test changes.
1 parent 915fcf9 commit 0bcfaba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/ql/test/library-tests/ir/range-analysis/SimpleRangeAnalysis_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,12 @@ int test12() {
175175
size_type Start = 0;
176176
while (Start <= test12_helper()-1)
177177
{
178-
range(Start); // $ MISSING:range=>=0
178+
range(Start); // $ range="<=Store: ... += ...+0" MISSING:range=>=0
179179
const size_type Length = test12_helper();
180180
Start += Length + 1; // $ overflow=+
181181
range(Start); // $ MISSING:range=>=1 MISSING:range=>=Start+1 MISSING:range=">=call to test12_helper+1"
182182
}
183-
range(Start); // $ MISSING:range=>=0
183+
range(Start); // $ range="<=Store: ... += ...+0" MISSING:range=>=0
184184

185185
return 1;
186186
}

0 commit comments

Comments
 (0)