From b053d02cdb782f02e85b540b3fc0e2a70faa5695 Mon Sep 17 00:00:00 2001 From: Andrey Borzenkov Date: Tue, 26 Jun 2001 15:02:34 +0000 Subject: 15099: rudimental support for skipping unimplemented tests --- Test/D03procsubst.ztst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'Test/D03procsubst.ztst') diff --git a/Test/D03procsubst.ztst b/Test/D03procsubst.ztst index 1810f9178..c1d7d289d 100644 --- a/Test/D03procsubst.ztst +++ b/Test/D03procsubst.ztst @@ -1,10 +1,16 @@ # Tests for process substitution: <(...), >(...) and =(...). %prep - mkdir procsubst.tmp - cd procsubst.tmp - print 'First\tSecond\tThird\tFourth' >FILE1 - print 'Erste\tZweite\tDritte\tVierte' >FILE2 + if grep '#define PATH_DEV_FD' $ZTST_testdir/../config.h > /dev/null 2>&1 || + grep '#define HAVE_FIFOS' $ZTST_testdir/../config.h > /dev/null 2>&1; then + mkdir procsubst.tmp + cd procsubst.tmp + print 'First\tSecond\tThird\tFourth' >FILE1 + print 'Erste\tZweite\tDritte\tVierte' >FILE2 + else + ZTST_unimplemented="process substitution is not supported" + true + fi %test paste <(cut -f1 FILE1) <(cut -f3 FILE2) -- cgit 1.4.1