File: run_tests

package info (click to toggle)
zfs-autobackup 3.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 616 kB
  • sloc: python: 5,044; sh: 94; makefile: 3
file content (40 lines) | stat: -rwxr-xr-x 781 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash 

SCRIPTDIR=`dirname $0`

#cd $SCRIPTDIR || exit 1


if [ "$USER" != "root" ]; then
    echo "Need root to do proper zfs testing"
    exit 1
fi


# test needs ssh access to localhost for testing
if ! [ -e /root/.ssh/id_rsa ]; then
    ssh-keygen -t rsa -f /root/.ssh/id_rsa -P '' || exit 1
    cat /root/.ssh/id_rsa.pub  >> /root/.ssh/authorized_keys || exit 1
    ssh -oStrictHostKeyChecking=no localhost true || exit 1
fi

cat >> ~/.ssh/config <<EOF
Host *
    addkeystoagent yes
    controlpath ~/.ssh/control-master-%r@%h:%p
    controlmaster auto
    controlpersist 3600
EOF


modprobe brd rd_size=512000

umount /tmp/ZfsCheck*

coverage run --branch --source zfs_autobackup -m unittest discover -vvvvf $SCRIPTDIR $@ 2>&1
EXIT=$?

echo
coverage report

exit $EXIT