From ece3f5f724dca841c06406c9fe49722bf8966670 Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Fri, 4 Sep 2026 09:36:52 +0200 Subject: [PATCH] [stressGUI] Disable web mode when run sub-process stressGUI runs several macros from tutorials/visualisation/gui starting external root.exe process. Disable web mode to avoid conflicts --- test/stressGUI.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/stressGUI.cxx b/test/stressGUI.cxx index caf158973344b..25dfc1c533716 100644 --- a/test/stressGUI.cxx +++ b/test/stressGUI.cxx @@ -2020,9 +2020,9 @@ const char *excluded[] = { Int_t bexec(TString &dir, const char *macro) { #ifdef WIN32 - return gSystem->Exec(TString::Format("set ROOT_HIST=0 & root.exe -l -q exec_macro.C(\\\"%s/%s\\\") >nul 2>&1", dir.Data(), macro)); + return gSystem->Exec(TString::Format("set ROOT_HIST=0 & root.exe -l -q --web=off exec_macro.C(\\\"%s/%s\\\") >nul 2>&1", dir.Data(), macro)); #else - return gSystem->Exec(TString::Format("ROOT_HIST=0 root.exe -l -q exec_macro.C\\(\\\"%s/%s\\\"\\) >&/dev/null", dir.Data(), macro)); + return gSystem->Exec(TString::Format("ROOT_HIST=0 root.exe -l -q --web=off exec_macro.C\\(\\\"%s/%s\\\"\\) >&/dev/null", dir.Data(), macro)); #endif }