1320703Sngie#
2320703Sngie# Copyright (c) 2017 Ngie Cooper <ngie@FreeBSD.org>
3320703Sngie# All rights reserved.
4320703Sngie#
5320703Sngie# Redistribution and use in source and binary forms, with or without
6320703Sngie# modification, are permitted provided that the following conditions
7320703Sngie# are met:
8320703Sngie# 1. Redistributions of source code must retain the above copyright
9320703Sngie#    notice, this list of conditions and the following disclaimer.
10320703Sngie# 2. Redistributions in binary form must reproduce the above copyright
11320703Sngie#    notice, this list of conditions and the following disclaimer in the
12320703Sngie#    documentation and/or other materials provided with the distribution.
13320703Sngie#
14320703Sngie# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15320703Sngie# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16320703Sngie# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17320703Sngie# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18320703Sngie# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19320703Sngie# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20320703Sngie# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21320703Sngie# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22320703Sngie# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23320703Sngie# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24320703Sngie# SUCH DAMAGE.
25320703Sngie#
26320703Sngie# $FreeBSD: stable/10/share/zoneinfo/tests/backward_test.sh 320703 2017-07-06 04:30:06Z ngie $
27320703Sngie
28320703Sngieatf_test_case links
29320703Sngielinks_head()
30320703Sngie{
31320703Sngie	atf_set "descr" "Verify Links directives in contrib/tzdata/backward"
32320703Sngie}
33320703Sngie
34320703Sngielinks_body()
35320703Sngie{
36320703Sngie	verify_Links $(atf_get_srcdir)/backward
37320703Sngie}
38320703Sngie
39320703Sngieatf_init_test_cases()
40320703Sngie{
41320703Sngie	. "$(dirname "$0")/zoneinfo_common.sh"
42320703Sngie
43320703Sngie	atf_add_test_case links
44320703Sngie}
45