Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 1b154ac

Browse files
committed
CI tester-exec.sh: use explicit test plan name in daft call
This reduces risk that some other test plan gets used. Signed-off-by: Olev Kartau <olev.kartau@intel.com>
1 parent 0565df6 commit 1b154ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docker/tester-exec.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,13 @@ testimg() {
110110
cp $HOME/.config.ini.wlan ${_WLANCONF}
111111
chmod 644 ${_WLANCONF}
112112

113-
daft ${DEVICE} ${FILENAME} --record
113+
_daft_args="${DEVICE} ${FILENAME} --record --testplan iot_qatest"
114+
daft $_daft_args
114115
TEST_EXIT_CODE=$?
115116
if [ "$TEST_EXIT_CODE" = 1 ]; then
116117
echo "WARNING: daft=1 would lead to UNSTABLE: wipe results, retry daft"
117118
rm -f *.log *.log.raw *.xml
118-
daft ${DEVICE} ${FILENAME} --record
119+
daft $_daft_args
119120
TEST_EXIT_CODE=$?
120121
fi
121122
fi

0 commit comments

Comments
 (0)