New upstream version 1.8
[debian/gzip] / tests / zgrep-context
index f2e26d261fb925117fdbfb55eee881761ff68f55..089d2563971dd6f06bd0eb0a41176bfd0ccae71b 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/sh
 # Ensure that zgrep -15 works.  Before gzip-1.5, it would fail.
 
-# Copyright (C) 2012-2013 Free Software Foundation, Inc.
+# Copyright (C) 2012-2016 Free Software Foundation, Inc.
 
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -34,6 +34,12 @@ seq 40 > in || framework_failure_
 gzip < in > in.gz || framework_failure_
 seq 2 32 > exp || framework_failure_
 
+: ${GREP=grep}
+$GREP -15 17 - < in > out && compare exp out || {
+  echo >&2 "$0: $GREP does not support context options; skipping this test"
+  exit 77
+}
+
 fail=0
 zgrep -15 17 - < in.gz > out || fail=1
 compare exp out || fail=1