summaryrefslogtreecommitdiff
path: root/indra/llcommon/tests/llleap_test.cpp
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2023-07-10 14:35:41 -0400
committerNat Goodspeed <nat@lindenlab.com>2023-07-10 14:35:41 -0400
commit31ccef8a666da54312a55663a7ac03061c4903be (patch)
tree5881657d78246c2d68810f3a6fbe260ba22b9895 /indra/llcommon/tests/llleap_test.cpp
parent13d44e5bedb79ab6cfc305fa0285e7fdc5fdec6a (diff)
SL-18837: Revert "Force llprocess_test and llleap_test to use just 'python'."
Turns out that the pathname of the Python executable wasn't the issue. This reverts commit 7dc6211ad5ea83685a35c6fff740278343aa8b9d.
Diffstat (limited to 'indra/llcommon/tests/llleap_test.cpp')
-rw-r--r--indra/llcommon/tests/llleap_test.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/indra/llcommon/tests/llleap_test.cpp b/indra/llcommon/tests/llleap_test.cpp
index 01515ecebf..e9edd165df 100644
--- a/indra/llcommon/tests/llleap_test.cpp
+++ b/indra/llcommon/tests/llleap_test.cpp
@@ -193,20 +193,11 @@ namespace tut
reader.getName().substr(0, reader.getName().length()-3))),
PYTHON(LLStringUtil::getenv("PYTHON"))
{
-#if LL_WINDOWS
- // Weirdly, on GitHub Windows runners, plain 'python' works much
- // better than a full pathname.
- const char* RUNNER_TEMP = getenv("RUNNER_TEMP");
- if (RUNNER_TEMP && *RUNNER_TEMP)
- {
- PYTHON = "python";
- }
-#endif
ensure("Set PYTHON to interpreter pathname", !PYTHON.empty());
}
NamedExtTempFile reader;
const std::string reader_module;
- std::string PYTHON;
+ const std::string PYTHON;
};
typedef test_group<llleap_data> llleap_group;
typedef llleap_group::object object;