2005-05-16 David Billinghurst <David.Billinghurst@riotinto.com>
authorbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 16 May 2005 00:51:38 +0000 (00:51 +0000)
committerbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 16 May 2005 00:51:38 +0000 (00:51 +0000)
PR libstdc++/21526
* lib/target-supports.exp (check_mkfifo_available):
Return 0 for cygwin as mkfifo support incomplete on platform.
Fix typos in comments.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99757 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/lib/target-supports.exp

index 9f9458e..4e40637 100644 (file)
@@ -1,3 +1,10 @@
+2005-05-16  David Billinghurst <David.Billinghurst@riotinto.com>
+
+       PR libstdc++/21526
+       * lib/target-supports.exp (check_mkfifo_available):
+       Return 0 for cygwin as mkfifo support incomplete on platform.
+       Fix typos in comments.
+
 2005-05-15  Mark Mitchell  <mark@codesourcery.com>
 
        * lib/compat.exp (compat-execute): Do not use regsub unsafely.
index 90139ff..9306790 100644 (file)
@@ -636,15 +636,20 @@ proc check_function_available { function } {
     eval return \$$var
 }
 
-# Returns ture iff "fork" is available on the target system.
+# Returns true iff "fork" is available on the target system.
 
 proc check_fork_available {} {
     return [check_function_available "fork"]
 }
 
-# Returns ture iff "mkfifo" is available on the target system.
+# Returns true iff "mkfifo" is available on the target system.
 
 proc check_mkfifo_available {} {
+    if {[istarget *-*-cygwin*]} {
+       # Cygwin has mkfifo, but support is incomplete.
+       return 0
+     }
+
     return [check_function_available "mkfifo"]
 }