diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-08-29 17:09:34 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-08-29 17:09:34 +1000 |
commit | 2a81adc35c51668374b40661e1a0eaac8e53ef74 (patch) | |
tree | c50e7557e835f16c119b9af7f7fefb7f588bdced /regress/multiplex.sh | |
parent | 48d99d36bb427f6c43cfe8d8e7d8a457897dfd53 (diff) |
- (dtucker) [regress/multiplex.sh] Skip test on platforms that do not
support FD passing since multiplex requires it. Noted by tim@
Diffstat (limited to 'regress/multiplex.sh')
-rw-r--r-- | regress/multiplex.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/regress/multiplex.sh b/regress/multiplex.sh index dbf2025be..c0adf109f 100644 --- a/regress/multiplex.sh +++ b/regress/multiplex.sh | |||
@@ -5,6 +5,12 @@ CTL=$OBJ/ctl-sock | |||
5 | 5 | ||
6 | tid="connection multiplexing" | 6 | tid="connection multiplexing" |
7 | 7 | ||
8 | if grep "#define.*DISABLE_FD_PASSING" ${BUILDDIR}/config.h >/dev/null 2>&1 | ||
9 | then | ||
10 | echo "skipped (not supported on this platform)" | ||
11 | exit 0 | ||
12 | fi | ||
13 | |||
8 | DATA=/bin/ls${EXEEXT} | 14 | DATA=/bin/ls${EXEEXT} |
9 | COPY=$OBJ/ls.copy | 15 | COPY=$OBJ/ls.copy |
10 | 16 | ||