From: David Levine Date: Thu, 6 Oct 2016 17:07:20 +0000 (-0400) Subject: Fixed test negations in test-version-check to work with make distcheck. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/1e40137c8f82911cdd866b1c7d614c4a18725305?hp=28941ade20b965d204435e5d3911dafbcd364123 Fixed test negations in test-version-check to work with make distcheck. --- diff --git a/test/install-mh/test-version-check b/test/install-mh/test-version-check index 68f2f3d7..4b1fb8c8 100755 --- a/test/install-mh/test-version-check +++ b/test/install-mh/test-version-check @@ -17,7 +17,7 @@ fi setup_test -if ! test -t 0 || ! test -t 1 || ! test -t 2; then +if test ! -t 0 || test ! -t 1 || test ! -t 2; then test_skip 'Must be connected to terminal.' fi