From: Johannes Berg Date: Fri, 1 Feb 2019 20:04:01 +0000 (+0100) Subject: tests: vm-run: Create a symlink to the latest logs X-Git-Tag: hostap_2_8~485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8bdefe511c4a456aaac8cb35b2ffc42fb847c4f1;p=thirdparty%2Fhostap.git tests: vm-run: Create a symlink to the latest logs 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 --- diff --git a/tests/hwsim/vm/vm-run.sh b/tests/hwsim/vm/vm-run.sh index c000d429c..1712ed349 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"