From f976ed2ef08f835ff7d554a136d9af1131851802 Mon Sep 17 00:00:00 2001 From: Alberto Sartori Date: Tue, 14 May 2024 16:41:06 +0200 Subject: test/utils/test_env.hpp: split REMOTE_EXECUTION_PROPERTIES on space... ...instead of the unused ';' Using spaces allows for simpler looping in shell script --- test/utils/test_env.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/utils/test_env.hpp') diff --git a/test/utils/test_env.hpp b/test/utils/test_env.hpp index 47396db2..0764f9f4 100644 --- a/test/utils/test_env.hpp +++ b/test/utils/test_env.hpp @@ -32,7 +32,7 @@ if (execution_props not_eq nullptr) { std::istringstream pss(std::string{execution_props}); std::string keyval_pair; - while (std::getline(pss, keyval_pair, ';')) { + while (std::getline(pss, keyval_pair, ' ')) { properties.emplace_back(keyval_pair); } } -- cgit v1.2.3