]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
tests: start.sh: fix logs/current symlink creation
authorArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Wed, 9 Jan 2019 12:34:11 +0000 (13:34 +0100)
committerJouni Malinen <j@w1.fi>
Sat, 12 Jan 2019 15:39:59 +0000 (17:39 +0200)
Since 3bdc651a624, start.sh creates the logs/current symlink even if
LOGDIR was set in the environment, as is the case when using run-all.sh.
However, run-all.sh and start.sh use a separate 'date' invocation so the
resulting string may be different. Usually it is the same because the
two invocations immediately follow each other, *except* if run-all.sh
also does a build. In addition, if the user sets LOGDIR to something
else, the symlink is completely bogus.

Fix this by not relying on the 'date' invocation for creating the
symlink. Instead, use the basename of LOGDIR. To keep things consistent
with current behavior, only create the symlink if LOGDIR points to a
subdirectory of DIR/logs.

The following use cases now work reliably:
* run-all.sh with or without the -B option;
* manually calling start.sh followed by run-tests.py without setting
  LOGDIR.
* manually calling start.sh with LOGDIR set to a subdirectory of logs
  and calling run-tests.py without --logdir option (which makes it
  default to logs/current).
* run-all.sh with LOGDIR set to a subdirectory of logs.

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
tests/hwsim/start.sh

index 77e9791ab5d07f7d31321e8075aca9b46a4bd7c4..648a54d84f79b505b4f2e1e33213aec966a3b6c4 100755 (executable)
@@ -8,9 +8,9 @@ HAPD_AS=$DIR/../../hostapd/hostapd
 HAPDCLI=$DIR/../../hostapd/hostapd_cli
 WLANTEST=$DIR/../../wlantest/wlantest
 HLR_AUC_GW=$DIR/../../hostapd/hlr_auc_gw
-DATE="$(date +%s)"
 
 if [ -z "$LOGDIR" ] ; then
+    DATE="$(date +%s)"
     LOGDIR="$DIR/logs/$DATE"
     mkdir -p $LOGDIR
 else
@@ -51,9 +51,10 @@ else
     fi
 fi
 
-if test -w "$DIR/logs" ; then
-    rm -rf $DIR/logs/current
-    ln -sf $DATE $DIR/logs/current
+LOGBASEDIR="$( cd "$(dirname "$LOGDIR")" && pwd )"
+if test "$LOGBASEDIR" = "$DIR/logs" -a -w "$LOGBASEDIR" ; then
+    rm -rf "$LOGBASEDIR/current"
+    ln -sf "$(basename "$LOGDIR")" "$LOGBASEDIR/current"
 fi
 
 if groups | tr ' ' "\n" | grep -q ^admin$; then