Changeset View
Changeset View
Standalone View
Standalone View
tests/sys/geom/class/part/sgi.sh
- This file was added.
| # SPDX-License-Identifier: BSD-2-Clause | |||||
| # | |||||
| # Copyright (c) 2026 ConnectWise | |||||
| # | |||||
| # Redistribution and use in source and binary forms, with or without | |||||
| # modification, are permitted provided that the following conditions | |||||
| # are met: | |||||
| # 1. Redistributions of source code must retain the above copyright | |||||
| # notice, this list of conditions and the following disclaimer. | |||||
| # 2. Redistributions in binary form must reproduce the above copyright | |||||
| # notice, this list of conditions and the following disclaimer in the | |||||
| # documentation and/or other materials provided with the distribution. | |||||
| # | |||||
| # THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND | |||||
| # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |||||
| # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |||||
| # ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | |||||
| # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |||||
| # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |||||
| # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |||||
| # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |||||
| # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |||||
| # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |||||
| # SUCH DAMAGE. | |||||
| # | |||||
| ATF_TEST=true | |||||
| . $(atf_get_srcdir)/../geom_subr.sh | |||||
| atf_test_case golden_image cleanup | |||||
| golden_image_head() | |||||
| { | |||||
| atf_set "descr" "geom_part_sgi can read an authentic SGI disk label" | |||||
| atf_set "require.user" "root" | |||||
| atf_set "require.kmods" "geom_part_sgi" | |||||
| } | |||||
| golden_image_body() | |||||
| { | |||||
| truncate -s 100663296000 golden.img | |||||
| dd if=$(atf_get_srcdir)/sgi-golden.hdr of=golden.img \ | |||||
| bs=512 conv=notrunc status=none | |||||
| attach_md md -t vnode -f golden.img | |||||
| actual=`gpart show ${md} | sed "s/md[0-9]*/mdX/"` | |||||
| expected="=> 0 196608000 mdX SGI (94G) | |||||
| 0 4096 8 sgi-volhdr (2.0M) | |||||
| 4096 262144 1 freebsd-swap (128M) | |||||
| 266240 196341760 0 sgi-xfs (94G)" | |||||
| atf_check_equal "$actual" "$expected" | |||||
| } | |||||
| golden_image_cleanup() | |||||
| { | |||||
| geom_test_cleanup | |||||
| } | |||||
| atf_init_test_cases() | |||||
| { | |||||
| atf_add_test_case golden_image | |||||
| } | |||||