From a4c3cc4b3e286f8c954637cab86c47dc65d6d238 Mon Sep 17 00:00:00 2001 From: ferdymercury Date: Mon, 25 Aug 2025 14:35:12 +0200 Subject: [PATCH] [test] fix name conflict when multithreading see https://github.com/root-project/root/actions/runs/17157474273/job/48677881584?pr=19688 --- roottest/root/tree/array/execStdArray.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roottest/root/tree/array/execStdArray.C b/roottest/root/tree/array/execStdArray.C index d8680af059287..d6eea88575081 100644 --- a/roottest/root/tree/array/execStdArray.C +++ b/roottest/root/tree/array/execStdArray.C @@ -1,5 +1,5 @@ void CreateTreeWithStdArray(){ - TFile f("test.root", "RECREATE"); + TFile f("testStdArray.root", "RECREATE"); TTree t("tree", "tree"); std::array arr; arr[0] = 10.1; @@ -14,7 +14,7 @@ void CreateTreeWithStdArray(){ int execStdArray() { CreateTreeWithStdArray(); - TFile f("test.root", "READ"); + TFile f("testStdArray.root", "READ"); TTree *t = f.Get("tree"); if (!t) { Error("execStdArray","Could not find the TTree 'tree'");