summaryrefslogtreecommitdiff
path: root/tests/reversed-range-endpoints
blob: 925672453189dc6c2455a02cb5e600f6d422c31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# Ensure that an invalid range like [b-a] evokes exit status of 2.
. "${srcdir=.}/init.sh"; path_prepend_ ../src

fail=0

printf 'Invalid range end\n' > exp
for prog in grep egrep 'grep -E'; do
  $prog '[b-a]' < /dev/null > out 2>&1
  # exit status must be 2, not 1
  test $? = 2 || fail=1

  # Remove "program_name: " prefix from actual output.
  sed 's/^[a-z]*: //' out > k && mv k out

  compare exp out || fail=1
done

Exit $fail