11.4Srillig# $NetBSD: t_cat.sh,v 1.4 2024/04/26 00:57:15 rillig Exp $ 21.1Sjruoho# 31.1Sjruoho# Copyright (c) 2012 The NetBSD Foundation, Inc. 41.1Sjruoho# All rights reserved. 51.1Sjruoho# 61.1Sjruoho# This code is derived from software contributed to The NetBSD Foundation 71.1Sjruoho# by Jukka Ruohonen. 81.1Sjruoho# 91.1Sjruoho# Redistribution and use in source and binary forms, with or without 101.1Sjruoho# modification, are permitted provided that the following conditions 111.1Sjruoho# are met: 121.1Sjruoho# 1. Redistributions of source code must retain the above copyright 131.1Sjruoho# notice, this list of conditions and the following disclaimer. 141.1Sjruoho# 2. Redistributions in binary form must reproduce the above copyright 151.1Sjruoho# notice, this list of conditions and the following disclaimer in the 161.1Sjruoho# documentation and/or other materials provided with the distribution. 171.1Sjruoho# 181.1Sjruoho# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 191.1Sjruoho# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 201.1Sjruoho# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 211.1Sjruoho# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 221.1Sjruoho# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 231.1Sjruoho# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 241.1Sjruoho# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 251.1Sjruoho# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 261.1Sjruoho# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 271.1Sjruoho# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 281.1Sjruoho# POSSIBILITY OF SUCH DAMAGE. 291.1Sjruoho# 301.1Sjruoho 311.1Sjruohoatf_test_case align 321.1Sjruohoalign_head() { 331.4Srillig atf_set "descr" "Test that cat(1) aligns the output" \ 341.1Sjruoho "right with options '-be' (PR bin/4841)" 351.1Sjruoho} 361.1Sjruoho 371.1Sjruohoalign_body() { 381.1Sjruoho 391.4Srillig atf_check -o file:$(atf_get_srcdir)/d_align.out \ 401.4Srillig cat -be $(atf_get_srcdir)/d_align.in 411.1Sjruoho} 421.1Sjruoho 431.1Sjruohoatf_test_case nonexistent 441.1Sjruohononexistent_head() { 451.4Srillig atf_set "descr" "Test that cat(1) doesn't return zero exit" \ 461.1Sjruoho "status for a nonexistent file (PR bin/3538)" 471.1Sjruoho} 481.1Sjruoho 491.1Sjruohononexistent_body() { 501.1Sjruoho 511.4Srillig atf_check -s not-exit:0 -e not-empty \ 521.4Srillig cat /some/name/that/does/not/exist 531.1Sjruoho} 541.1Sjruoho 551.3Ssevanatf_test_case se_output 561.3Ssevanse_output_head() { 571.4Srillig atf_set "descr" "Test that cat(1) prints a $ sign" \ 581.3Ssevan "on blank lines with options '-se' (PR bin/51250)" 591.3Ssevan} 601.3Ssevan 611.3Ssevanse_output_body() { 621.4Srillig atf_check -o file:$(atf_get_srcdir)/d_se_output.out \ 631.4Srillig cat -se $(atf_get_srcdir)/d_se_output.in 641.3Ssevan} 651.3Ssevan 661.1Sjruohoatf_init_test_cases() 671.1Sjruoho{ 681.1Sjruoho atf_add_test_case align 691.1Sjruoho atf_add_test_case nonexistent 701.3Ssevan atf_add_test_case se_output 711.1Sjruoho} 72