summaryrefslogtreecommitdiff
path: root/test/end-to-end/with_remote_test_runner.py
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2024-07-11 11:01:15 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2024-07-12 09:58:33 +0200
commit230b76b253f01098274f15b9c9a9140d362813db (patch)
treea9b56cc1406e6663df25adaa83ef3ba25142e4a2 /test/end-to-end/with_remote_test_runner.py
parent35bbafcc904d1d9cdfd353802a6ed9c73a7f1713 (diff)
downloadjustbuild-230b76b253f01098274f15b9c9a9140d362813db.tar.gz
Internal test rules with infastructure: also record pwd
Diffstat (limited to 'test/end-to-end/with_remote_test_runner.py')
-rwxr-xr-xtest/end-to-end/with_remote_test_runner.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/end-to-end/with_remote_test_runner.py b/test/end-to-end/with_remote_test_runner.py
index f4b56105..ea1121bc 100755
--- a/test/end-to-end/with_remote_test_runner.py
+++ b/test/end-to-end/with_remote_test_runner.py
@@ -41,6 +41,8 @@ def dump_results() -> None:
f.write("%s\n" % (stdout, ))
with open("stderr", "w") as f:
f.write("%s\n" % (stderr, ))
+ with open("pwd", "w") as f:
+ f.write("%s\n" % (os.getcwd(), ))
def get_remote_execution_address(d: Json) -> str: