summaryrefslogtreecommitdiffstats
path: root/tests/setlist_resize.sh
blob: ee045f49c75c1f134f3e7ba67f27b1a6097f1143 (plain)
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
#!/bin/sh

# set -x

loop=8

for x in ip_set_list_set ip_set_hash_netiface ip_set_hash_ipportnet \
	 ip_set_hash_netport ip_set_hash_net ip_set_hash_ipportip \
	 ip_set_hash_ipport ip_set_hash_ip ip_set_hash_netnet \
	 ip_set_bitmap_port ip_set_bitmap_ipmac \
	 ip_set_bitmap_ip xt_set ip_set; do
    rmmod $x
done

create() {
    n=$1
    while [ $n -le 1024 ]; do
    	../src/ipset c test$n hash:ip
    	n=$((n+2))
    done
}

for x in `seq 1 $loop`; do
    # echo "test round $x"
    create 1 &
    create 2 &
    wait
    test `../src/ipset l -n | wc -l` -eq 1024 || exit 1
    ../src/ipset x
    test `lsmod|grep -w ^ip_set_hash_ip | awk '{print $3}'` -eq 0 || exit 1
    rmmod ip_set_hash_ip
    rmmod ip_set
done