aboutsummaryrefslogtreecommitdiffstats
path: root/debian/tests/test-dkms
blob: 5db36af9b1fc5f584e05fa91b77c867d911e53dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
set -eu

basedir=$(dirname "$0")
. "${basedir}"/check-dpdk-supported-arch.sh

if [ -d /var/lib/dkms ]; then
    (cd /var/lib/dkms; find -name "make.log" -print0 | xargs -0 tar c) > "$ADT_ARTIFACTS/dkms-make-logs.tar"
fi

# check that the dkms build fine (on dep install), load and unload
printf "\n\nChecking igb_uio\n"
modinfo igb_uio
modprobe igb_uio
rmmod igb_uio
echo "OK"

printf "\n\nChecking igb_uio\n"
modinfo rte_kni
modprobe rte_kni
rmmod rte_kni
echo "OK"