Removed subpackages: root-io-gfal and root-roofit-common Dropped patches: 6 New patches: 6
25 lines
781 B
Diff
25 lines
781 B
Diff
From 1942f5569b1d101f2c89341765ea37850e3de669 Mon Sep 17 00:00:00 2001
|
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
Date: Fri, 17 Nov 2023 11:43:46 +0100
|
|
Subject: [PATCH 2/3] Add old gtest compat for SetUpTestSuite/TearDownTestSuite
|
|
|
|
---
|
|
tree/tree/test/friendinfo.cxx | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/tree/tree/test/friendinfo.cxx b/tree/tree/test/friendinfo.cxx
|
|
index 141a495052..6e94056946 100644
|
|
--- a/tree/tree/test/friendinfo.cxx
|
|
+++ b/tree/tree/test/friendinfo.cxx
|
|
@@ -14,6 +14,8 @@
|
|
// Backward compatibility for gtest version < 1.10.0
|
|
#ifndef INSTANTIATE_TEST_SUITE_P
|
|
#define INSTANTIATE_TEST_SUITE_P INSTANTIATE_TEST_CASE_P
|
|
+#define SetUpTestSuite SetUpTestCase
|
|
+#define TearDownTestSuite TearDownTestCase
|
|
#endif
|
|
|
|
namespace {
|
|
--
|
|
2.42.0
|
|
|