From 8f7dabce13e6bbc738077feaeb95641a3ce60407 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kochma=C5=84ski?= Date: Wed, 7 Dec 2016 20:11:22 +0100 Subject: [PATCH] tests: truename: windows doesn't have real symlinks Add missing cygwin declaration --- src/tests/normal-tests/compiler.lsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/normal-tests/compiler.lsp b/src/tests/normal-tests/compiler.lsp index 964ef82bf..ed7b1ac04 100644 --- a/src/tests/normal-tests/compiler.lsp +++ b/src/tests/normal-tests/compiler.lsp @@ -300,7 +300,7 @@ ;;; (truename #p"/tmp/foo") signals an error because //usr is ;;; parsed as a hostname. ;;; -#-(or windows haiku) +#-(or cygwin haiku windows) (test cmp.0013.truename (si:system "rm -rf foo; ln -sf //usr/ foo") (is (equal (namestring (truename "./foo")) "/usr/"))