automated: linux: kselftest: fix kselftest log publish
In kselftest/parse-output.py a change made for debugging was mistakenly
added in a previous commit, which is causing kselftest to not properly
create and find extended error log files.
Fixes: 9d6d8c743191 ("automated: linux: kselftest: publish kselftest logs")
Signed-off-by: TheodoreGrey <theodore.grey@linaro.org>
diff --git a/automated/linux/kselftest/parse-output.py b/automated/linux/kselftest/parse-output.py
index eea3aaa..fa1c026 100755
--- a/automated/linux/kselftest/parse-output.py
+++ b/automated/linux/kselftest/parse-output.py
@@ -86,7 +86,7 @@
name = r["name"]
if r["result"] == "fail":
try:
- log_file = open(f"output/thisshouldntwork/{name}.log", "w")
+ log_file = open(f"output/{name}.log", "w")
log_file.writelines(r["logs"])
log_file.close()
except OSError as e: