Skip to content

Commit 59eb818

Browse files
committed
testrunner: added TODOs about using new template [skip ci]
1 parent 82b695c commit 59eb818

10 files changed

+10
-0
lines changed

test/testbufferoverrun.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ class TestBufferOverrun : public TestFixture {
8585
}
8686

8787
void run() override {
88+
// TODO: mNewTemplate = true;
8889
TEST_CASE(noerr1);
8990
TEST_CASE(noerr2);
9091
TEST_CASE(noerr3);

test/testcondition.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ class TestCondition : public TestFixture {
4343
"</def>";
4444
settings1 = settingsBuilder(settings1).libraryxml(cfg).build();
4545

46+
// TODO: mNewTemplate = true;
4647
TEST_CASE(assignAndCompare); // assignment and comparison don't match
4748
TEST_CASE(mismatchingBitAnd); // overlapping bitmasks
4849
TEST_CASE(comparison); // CheckCondition::comparison test cases

test/testconstructors.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ class TestConstructors : public TestFixture {
5454
}
5555

5656
void run() override {
57+
// TODO: mNewTemplate = true;
5758
TEST_CASE(simple1);
5859
TEST_CASE(simple2);
5960
TEST_CASE(simple3);

test/testfunctions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class TestFunctions : public TestFixture {
3636
certainty(Certainty::inconclusive).c(Standards::C11).cpp(Standards::CPP11).library("std.cfg").library("posix.cfg").build();
3737

3838
void run() override {
39+
// TODO: mNewTemplate = true;
3940
// Prohibited functions
4041
TEST_CASE(prohibitedFunctions_posix);
4142
TEST_CASE(prohibitedFunctions_index);

test/testleakautovar.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class TestLeakAutoVar : public TestFixture {
3333
const Settings settings = settingsBuilder().library("std.cfg").build();
3434

3535
void run() override {
36+
// TODO: mNewTemplate = true;
3637
// Assign
3738
TEST_CASE(assign1);
3839
TEST_CASE(assign2);

test/testpreprocessor.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ class TestPreprocessor : public TestFixture {
9494
const Settings settings0 = settingsBuilder().severity(Severity::information).build();
9595

9696
void run() override {
97+
// TODO: mNewTemplate = true;
9798

9899
// The bug that started the whole work with the new preprocessor
99100
TEST_CASE(Bug2190219);

test/teststl.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class TestStl : public TestFixture {
3535
/*const*/ Settings settings = settingsBuilder().severity(Severity::warning).severity(Severity::style).severity(Severity::performance).library("std.cfg").build();
3636

3737
void run() override {
38+
// TODO: mNewTemplate = true;
3839
TEST_CASE(outOfBounds);
3940
TEST_CASE(outOfBoundsSymbolic);
4041
TEST_CASE(outOfBoundsIndexExpression);

test/testsuppressions.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class TestSuppressions : public TestFixture {
4848
const std::string templateFormat{"{callstack}: ({severity}) {inconclusive:inconclusive: }{message}"};
4949

5050
void run() override {
51+
// TODO: mNewTemplate = true;
5152
TEST_CASE(suppressionsBadId1);
5253
TEST_CASE(suppressionsDosFormat); // Ticket #1836
5354
TEST_CASE(suppressionsFileNameWithColon); // Ticket #1919 - filename includes colon

test/testtokenize.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class TestTokenizer : public TestFixture {
4949
const Settings settings_windows = settingsBuilder().library("windows.cfg").build();
5050

5151
void run() override {
52+
// TODO: mNewTemplate = true;
5253
TEST_CASE(tokenize1);
5354
TEST_CASE(tokenize2);
5455
TEST_CASE(tokenize4);

test/testuninitvar.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class TestUninitVar : public TestFixture {
3434
const Settings settings = settingsBuilder().library("std.cfg").build();
3535

3636
void run() override {
37+
// TODO: mNewTemplate = true;
3738
TEST_CASE(uninitvar1);
3839
TEST_CASE(uninitvar_warn_once); // only write 1 warning at a time
3940
TEST_CASE(uninitvar_decl); // handling various types in C and C++ files

0 commit comments

Comments
 (0)