diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-09-13 21:52:36 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-09-13 21:52:36 -0700 |
commit | 3ea961d3434910ed935c4cebd01c672adb5eb8b3 (patch) | |
tree | 62e82798b6220fbbdc1326de00e4b050a4c2a9f1 /tests/018 | |
parent | 03218909bb61e5aac1122301783650d1ba26ffcb (diff) | |
download | txr-3ea961d3434910ed935c4cebd01c672adb5eb8b3.tar.gz txr-3ea961d3434910ed935c4cebd01c672adb5eb8b3.tar.bz2 txr-3ea961d3434910ed935c4cebd01c672adb5eb8b3.zip |
glob*: skip tests on Cygwin.
* tests/018/glob.tl: exit successfully on Cygwin.
Diffstat (limited to 'tests/018')
-rw-r--r-- | tests/018/glob.tl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/018/glob.tl b/tests/018/glob.tl index 09a1b11d..cfbc7a8f 100644 --- a/tests/018/glob.tl +++ b/tests/018/glob.tl @@ -1,5 +1,9 @@ (load "../common") +;; Passes on Cygwin, but too slow! +(if (eq (os-symbol) :cygwin) + (exit)) + (mtest (sys:brace-expand "~/{Downloads,Pictures}/*.{jpg,gif,png}") #"~/Downloads/*.jpg ~/Downloads/*.gif ~/Downloads/*.png \ |