source: trunk/src/sed/testsuite/stdin-prog.sh@ 3613

Last change on this file since 3613 was 3613, checked in by bird, 10 months ago

src/sed: Merged in changes between 4.1.5 and 4.9 from the vendor branch. (svn merge /vendor/sed/4.1.5 /vendor/sed/current .)

File size: 1.2 KB
Line 
1#!/bin/sh
2# Test program file from STDIN
3
4# Copyright (C) 2016-2022 Free Software Foundation, Inc.
5
6# This program is free software: you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation, either version 3 of the License, or
9# (at your option) any later version.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15
16# You should have received a copy of the GNU General Public License
17# along with this program. If not, see <https://www.gnu.org/licenses/>.
18. "${srcdir=.}/testsuite/init.sh"; path_prepend_ ./sed
19print_ver_ sed
20
21echo X > in1 || framework_failure_
22printf "1\nX\n" > exp1 || framework_failure_
23
24# program filename starts with '-'
25printf "=\n" > ./-myprog || framework_failure_
26
27
28# program from STDIN
29printf "=\n" | sed -f - in1 > out1 || fail=1
30compare_ exp1 out1 || fail=1
31
32# program filename starting with '-'
33# (if a buggy sed reads from STDIN, the 'v9' command will fail)
34printf "v9\n" | sed -f -myprog in1 > out2 || fail=1
35compare_ exp1 out2 || fail=1
36
37Exit $fail
Note: See TracBrowser for help on using the repository browser.