1234567891011121314151617181920212223 |
- #!/bin/bash
- LOGDIR=$1
- TMPDIR=/tmp/logs
- mv $LOGDIR/alt-* $TMPDIR
- cd $TMPDIR
- args=""
- for i in lcov-*.info-*; do
- args="$args -a $i"
- done
- lcov $args -o $LOGDIR/combined.info > $LOGDIR/combined-lcov.log 2>&1
- cd $LOGDIR
- genhtml -t "wpa_supplicant/hostapd combined for hwsim test run $(date +%s)" combined.info --output-directory . > lcov.log 2>&1
- rm -r /tmp/logs/alt-wpa_supplicant
- rm -r /tmp/logs/alt-hostapd
- rm -r /tmp/logs/alt-hostapd-as
- rm -r /tmp/logs/alt-hlr_auc_gw
- rm /tmp/logs/lcov-*info-*
- rmdir /tmp/logs
|