]> git.proxmox.com Git - mirror_zfs.git/blame - TEST
OpenZFS 8906 - uts: illumos rootfs should support salted cksum
[mirror_zfs.git] / TEST
CommitLineData
f3e2a7ac
BB
1#!/bin/sh
2
3### prepare
4#TEST_PREPARE_WATCHDOG="no"
5
6### SPLAT
7#TEST_SPLAT_SKIP="yes"
8#TEST_SPLAT_OPTIONS="-acvx"
9
10### ztest
11#TEST_ZTEST_SKIP="yes"
12#TEST_ZTEST_TIMEOUT=1800
13#TEST_ZTEST_DIR="/var/tmp/"
14#TEST_ZTEST_OPTIONS="-V"
15
f3e2a7ac
BB
16### zimport
17#TEST_ZIMPORT_SKIP="yes"
18#TEST_ZIMPORT_DIR="/var/tmp/zimport"
19#TEST_ZIMPORT_VERSIONS="master installed"
20#TEST_ZIMPORT_POOLS="zol-0.6.1 zol-0.6.2 master installed"
21#TEST_ZIMPORT_OPTIONS="-c"
22
23### xfstests
24#TEST_XFSTESTS_SKIP="yes"
25#TEST_XFSTESTS_URL="https://github.com/behlendorf/xfstests/archive/"
26#TEST_XFSTESTS_VER="zfs.tar.gz"
27#TEST_XFSTESTS_POOL="tank"
28#TEST_XFSTESTS_FS="xfstests"
29#TEST_XFSTESTS_VDEV="/var/tmp/vdev"
30#TEST_XFSTESTS_OPTIONS=""
31
6bb24f4d
BB
32### zfs-tests.sh
33#TEST_ZFSTESTS_SKIP="yes"
34#TEST_ZFSTESTS_DISKS="vdb vdc vdd"
35#TEST_ZFSTESTS_DISKSIZE="8G"
36#TEST_ZFSTESTS_RUNFILE="linux.run"
37
f3e2a7ac
BB
38### zfsstress
39#TEST_ZFSSTRESS_SKIP="yes"
40#TEST_ZFSSTRESS_URL="https://github.com/nedbass/zfsstress/archive/"
41#TEST_ZFSSTRESS_VER="master.tar.gz"
42#TEST_ZFSSTRESS_RUNTIME=300
43#TEST_ZFSSTRESS_POOL="tank"
44#TEST_ZFSSTRESS_FS="fish"
45#TEST_ZFSSTRESS_VDEV="/var/tmp/vdev"
46#TEST_ZFSSTRESS_DIR="/$TEST_ZFSSTRESS_POOL/$TEST_ZFSSTRESS_FS"
47#TEST_ZFSSTRESS_OPTIONS=""
48
49### per-builder customization
50#
51# BB_NAME=builder-name <distribution-version-architecture-type>
52# - distribution=Amazon,Debian,Fedora,RHEL,SUSE,Ubuntu
53# - version=x.y
54# - architecture=x86_64,i686,arm,aarch64
55# - type=build,test
56#
57case "$BB_NAME" in
58Amazon*)
bbfd6354
BB
59 # ZFS enabled xfstests fails to build
60 TEST_XFSTESTS_SKIP="yes"
f3e2a7ac 61 ;;
db2c364f
BB
62CentOS-7*)
63 # ZFS enabled xfstests fails to build
64 TEST_XFSTESTS_SKIP="yes"
db2c364f
BB
65 ;;
66CentOS-6*)
f3e2a7ac
BB
67 ;;
68Debian*)
69 ;;
70Fedora*)
71 ;;
72RHEL*)
73 ;;
74SUSE*)
75 ;;
db2c364f
BB
76Ubuntu-16.04*)
77 # ZFS enabled xfstests fails to build
78 TEST_XFSTESTS_SKIP="yes"
db2c364f 79 ;;
f3e2a7ac
BB
80Ubuntu*)
81 ;;
82*)
83 ;;
84esac
ffb78320
BB
85
86###
87#
88# Disable the following test suites on 32-bit systems.
89#
90if [ $(getconf LONG_BIT) = "32" ]; then
91 TEST_ZTEST_SKIP="yes"
ffb78320
BB
92 TEST_XFSTESTS_SKIP="yes"
93 TEST_ZFSSTRESS_SKIP="yes"
94fi