diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-05-14 16:41:06 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-05-15 17:24:36 +0200 |
commit | f976ed2ef08f835ff7d554a136d9af1131851802 (patch) | |
tree | 4bbbdac07b9c2f0ea3cfe25de7fdfd1ca20df840 /test/utils/test_env.hpp | |
parent | ab0a06871391a84c9b904bc9f2cd74ee1e8903ea (diff) | |
download | justbuild-f976ed2ef08f835ff7d554a136d9af1131851802.tar.gz |
test/utils/test_env.hpp: split REMOTE_EXECUTION_PROPERTIES on space...
...instead of the unused ';'
Using spaces allows for simpler looping in shell script
Diffstat (limited to 'test/utils/test_env.hpp')
-rw-r--r-- | test/utils/test_env.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |