Skip to content

Commit

Permalink
Another windows-only segfault
Browse files Browse the repository at this point in the history
Try to figure out where this is happening since I have no windows box to
test this on.
  • Loading branch information
eljonny committed Jun 27, 2024
1 parent 62e8525 commit 4c57775
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/src/TestCase/TestCaseTestChunks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,48 +71,56 @@ namespace TestCPP {
}

void varyingCaptureLog () {
debugLog("CaptureLog param ctor test chunk FFF");
auto test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NF,COF,CLF",
function<void()>([](){}),
false, false, false
));

debugLog("CaptureLog param ctor test chunk FFT");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NF,COF,CLT",
function<void()>([](){}),
false, false, true
));

debugLog("CaptureLog param ctor test chunk FTF");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NF,COT,CLF",
function<void()>([](){}),
false, true, false
));

debugLog("CaptureLog param ctor test chunk FTT");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NF,COT,CLT",
function<void()>([](){}),
false, true, true
));

debugLog("CaptureLog param ctor test chunk TFF");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NT,COF,CLF",
function<void()>([](){}),
true, false, false
));

debugLog("CaptureLog param ctor test chunk TFT");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NT,COF,CLT",
function<void()>([](){}),
true, false, true
));

debugLog("CaptureLog param ctor test chunk TTF");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NT,COT,CLF",
function<void()>([](){}),
true, true, false
));

debugLog("CaptureLog param ctor test chunk TTT");
test = unique_ptr<TestCase>(new TestCase(
"ConstructCase Test - w/NT,COT,CLT",
function<void()>([](){}),
Expand Down

0 comments on commit 4c57775

Please sign in to comment.