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
|
---|
19 | print_ver_ sed
|
---|
20 |
|
---|
21 | echo X > in1 || framework_failure_
|
---|
22 | printf "1\nX\n" > exp1 || framework_failure_
|
---|
23 |
|
---|
24 | # program filename starts with '-'
|
---|
25 | printf "=\n" > ./-myprog || framework_failure_
|
---|
26 |
|
---|
27 |
|
---|
28 | # program from STDIN
|
---|
29 | printf "=\n" | sed -f - in1 > out1 || fail=1
|
---|
30 | compare_ exp1 out1 || fail=1
|
---|
31 |
|
---|
32 | # program filename starting with '-'
|
---|
33 | # (if a buggy sed reads from STDIN, the 'v9' command will fail)
|
---|
34 | printf "v9\n" | sed -f -myprog in1 > out2 || fail=1
|
---|
35 | compare_ exp1 out2 || fail=1
|
---|
36 |
|
---|
37 | Exit $fail
|
---|