From 4c57775e3563a006b0bf991ffcb41f76cb30d50b Mon Sep 17 00:00:00 2001 From: Jonathan Hyry Date: Thu, 27 Jun 2024 16:39:38 -0700 Subject: [PATCH] Another windows-only segfault Try to figure out where this is happening since I have no windows box to test this on. --- test/src/TestCase/TestCaseTestChunks.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/src/TestCase/TestCaseTestChunks.cpp b/test/src/TestCase/TestCaseTestChunks.cpp index 661cd48..f6854f9 100644 --- a/test/src/TestCase/TestCaseTestChunks.cpp +++ b/test/src/TestCase/TestCaseTestChunks.cpp @@ -71,48 +71,56 @@ namespace TestCPP { } void varyingCaptureLog () { + debugLog("CaptureLog param ctor test chunk FFF"); auto test = unique_ptr(new TestCase( "ConstructCase Test - w/NF,COF,CLF", function([](){}), false, false, false )); + debugLog("CaptureLog param ctor test chunk FFT"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NF,COF,CLT", function([](){}), false, false, true )); + debugLog("CaptureLog param ctor test chunk FTF"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NF,COT,CLF", function([](){}), false, true, false )); + debugLog("CaptureLog param ctor test chunk FTT"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NF,COT,CLT", function([](){}), false, true, true )); + debugLog("CaptureLog param ctor test chunk TFF"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NT,COF,CLF", function([](){}), true, false, false )); + debugLog("CaptureLog param ctor test chunk TFT"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NT,COF,CLT", function([](){}), true, false, true )); + debugLog("CaptureLog param ctor test chunk TTF"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NT,COT,CLF", function([](){}), true, true, false )); + debugLog("CaptureLog param ctor test chunk TTT"); test = unique_ptr(new TestCase( "ConstructCase Test - w/NT,COT,CLT", function([](){}),