From 7498aadd23eb4d5be2891041c9153cc5dff1a6cc Mon Sep 17 00:00:00 2001 From: Naveen Joy Date: Tue, 20 Sep 2022 11:38:33 -0700 Subject: tests: don't use tmp as the default log dir with run.py The log file directory is configurable with run.py using the --log-dir argument. This patch removes the use of /tmp as the default dir for storing all test logs. The default log dir is now set to show the year, month and day of the test run. This provides a more meaningful aggregation of test logs for effective troubleshooting. The default log dir is set to /test-run-YYYY-MM-DD. Type: improvement Change-Id: I6c9002e961f6e06fc953ca42d86febf4f218e566 Signed-off-by: Naveen Joy --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 06c57c3cb85..aba513c91e5 100644 --- a/.gitignore +++ b/.gitignore @@ -119,3 +119,7 @@ compile_commands.json # debian packaging .pc + +# No test log files +**/test-run-*-*-* + -- cgit 1.2.3-korg