diff mbox series

hwsim: vm-run: create a symlink to the latest logs

Message ID 20190201200401.17776-1-johannes@sipsolutions.net
State Accepted
Headers show
Series hwsim: vm-run: create a symlink to the latest logs | expand

Commit Message

Johannes Berg Feb. 1, 2019, 8:04 p.m. UTC
From: Johannes Berg <johannes.berg@intel.com>

This is useful when running a test multiple times, looking at
log output etc. to not have to pick out the right directory
each and every time.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
---
 tests/hwsim/vm/vm-run.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Jouni Malinen Feb. 1, 2019, 11:01 p.m. UTC | #1
On Fri, Feb 01, 2019 at 09:04:01PM +0100, Johannes Berg wrote:
> This is useful when running a test multiple times, looking at
> log output etc. to not have to pick out the right directory
> each and every time.

Thanks, applied.
diff mbox series

Patch

diff --git a/tests/hwsim/vm/vm-run.sh b/tests/hwsim/vm/vm-run.sh
index c000d429c51c..1712ed349647 100755
--- a/tests/hwsim/vm/vm-run.sh
+++ b/tests/hwsim/vm/vm-run.sh
@@ -86,6 +86,8 @@  done
 
 LOGDIR=$LOGS/$DATE
 mkdir -p $LOGDIR
+rm -f $LOGS/latest
+ln -s $LOGDIR $LOGS/latest
 
 if [ -n "$CODECOV_DIR" ]; then
     cp -a $CODECOV_DIR/alt-wpa_supplicant $LOGDIR
@@ -142,7 +144,7 @@  fi
 
 echo
 echo "Test run completed"
-echo "Logfiles are at $LOGDIR"
+echo "Logfiles are at $LOGDIR ($LOGS/latest)"
 if [ $CODECOV = "yes" ]; then
     echo "Code coverage report:"
     echo "file://$LOGDIR/lcov/index.html"