source: trunk/src/grep/tests/two-files@ 3669

Last change on this file since 3669 was 3529, checked in by bird, 4 years ago

Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.

  • Property svn:executable set to *
File size: 585 bytes
Line 
1#! /bin/sh
2# Read two files, of increasing size.
3# With ASAN, this would have triggered a false-positive read of poisoned memory.
4#
5# Copyright 2015-2021 Free Software Foundation, Inc.
6#
7# Copying and distribution of this file, with or without modification,
8# are permitted in any medium without royalty provided the copyright
9# notice and this notice are preserved.
10
11. "${srcdir=.}/init.sh"; path_prepend_ ../src
12
13fail=0
14
15printf a > 1 || framework_failure_
16printf ab > 2 || framework_failure_
17
18grep x 1 2 > out 2>&1
19test $? -eq 1 || fail=1
20compare /dev/null out || fail=1
21
22Exit $fail
Note: See TracBrowser for help on using the repository browser.