Add VLAN splinters unit test.
[sliver-openvswitch.git] / tests / testsuite.at
1 AT_INIT
2
3 AT_COPYRIGHT([Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at:
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.])
16
17 AT_TESTED([ovs-vswitchd])
18 AT_TESTED([ovs-vsctl])
19 AT_TESTED([perl])
20
21 m4_divert_push([PREPARE_TESTS])
22 [
23 ovs_wait () {
24     # First try a quick sleep, so that the test completes very quickly
25     # in the normal case.  POSIX doesn't require fractional times to
26     # work, so this might not work.
27     sleep 0.1
28     ovs_wait_cond && exit 0
29     # Then wait up to 10 seconds.
30     for d in 0 1 2 3 4 5 6 7 8 9; do
31         sleep 1
32         ovs_wait_cond && exit 0
33     done
34     exit 1
35 }
36
37 # Prints the integers from $1 to $2, increasing by $3 (default 1) on stdout.
38 seq () {
39     while test $1 -le $2; do
40         echo $1
41         set `expr $1 + ${3-1}` $2 $3
42     done
43 }
44 ]
45 m4_divert_pop([PREPARE_TESTS])
46
47 m4_define([OVS_WAIT],
48   [AT_CHECK(
49      [ovs_wait_cond () { $1
50 }
51 ovs_wait], [0], [ignore], [ignore], [$2])])
52 m4_define([OVS_WAIT_UNTIL], [OVS_WAIT([$1], [$2])])
53 m4_define([OVS_WAIT_WHILE],
54   [OVS_WAIT([if $1; then return 1; else return 0; fi], [$2])])
55
56 dnl ON_EXIT([COMMANDS])
57 dnl
58 dnl Adds the shell COMMANDS to a collection executed when the current test
59 dnl completes, as a cleanup action.  (The most common use is to kill a
60 dnl daemon started by the test.  This is important to prevent tests that
61 dnl start daemons from hanging at exit.)
62 m4_define([ON_EXIT], [trap '. ./cleanup' 0; cat >>cleanup <<'EOF'
63 $1
64 EOF
65 ])
66
67 m4_include([tests/ovsdb-macros.at])
68 m4_include([tests/ofproto-macros.at])
69
70 m4_include([tests/lacp.at])
71 m4_include([tests/library.at])
72 m4_include([tests/heap.at])
73 m4_include([tests/bundle.at])
74 m4_include([tests/classifier.at])
75 m4_include([tests/check-structs.at])
76 m4_include([tests/daemon.at])
77 m4_include([tests/daemon-py.at])
78 m4_include([tests/ofp-actions.at])
79 m4_include([tests/ofp-print.at])
80 m4_include([tests/ofp-util.at])
81 m4_include([tests/ofp-errors.at])
82 m4_include([tests/ovs-ofctl.at])
83 m4_include([tests/odp.at])
84 m4_include([tests/multipath.at])
85 m4_include([tests/learn.at])
86 m4_include([tests/vconn.at])
87 m4_include([tests/file_name.at])
88 m4_include([tests/aes128.at])
89 m4_include([tests/unixctl-py.at])
90 m4_include([tests/uuid.at])
91 m4_include([tests/json.at])
92 m4_include([tests/jsonrpc.at])
93 m4_include([tests/jsonrpc-py.at])
94 m4_include([tests/timeval.at])
95 m4_include([tests/tunnel.at])
96 m4_include([tests/lockfile.at])
97 m4_include([tests/reconnect.at])
98 m4_include([tests/ovs-vswitchd.at])
99 m4_include([tests/ofproto.at])
100 m4_include([tests/ofproto-dpif.at])
101 m4_include([tests/vlan-splinters.at])
102 m4_include([tests/ovsdb.at])
103 m4_include([tests/ovs-vsctl.at])
104 m4_include([tests/ovs-monitor-ipsec.at])
105 m4_include([tests/ovs-xapi-sync.at])
106 m4_include([tests/interface-reconfigure.at])
107 m4_include([tests/stp.at])
108 m4_include([tests/vlog.at])