From 230b76b253f01098274f15b9c9a9140d362813db Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Thu, 11 Jul 2024 11:01:15 +0200 Subject: Internal test rules with infastructure: also record pwd --- test/utils/remote_execution/test_runner.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test/utils/remote_execution/test_runner.py') diff --git a/test/utils/remote_execution/test_runner.py b/test/utils/remote_execution/test_runner.py index c1dfae95..30088807 100755 --- a/test/utils/remote_execution/test_runner.py +++ b/test/utils/remote_execution/test_runner.py @@ -36,6 +36,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(), )) dump_results() -- cgit v1.2.3