Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/platform/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  propagate-exceptions.patch.0   Sprache: unbekannt

 
--- src/cppunit/TestResult.cpp
+++ src/cppunit/TestResult.cpp
@@ -5,6 +5,7 @@
 #include <cppunit/tools/Algorithm.h>
 #include <cppunit/portability/Stream.h>
 #include <algorithm>
+#include <cstdlib>
 #include "DefaultProtector.h"
 #include "ProtectorChain.h"
 #include "ProtectorContext.h"
@@ -18,7 +19,8 @@
     , m_protectorChain( new ProtectorChain )
     , m_stop( false )
 { 
-  m_protectorChain->push( new DefaultProtector() );
+  if (!std::getenv("CPPUNIT_PROPAGATE_EXCEPTIONS"))
+    m_protectorChain->push( new DefaultProtector() );
 }
 
 

[ zur Elbe Produktseite wechseln0.5Quellennavigators  Analyse erneut starten  ]