diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-12-30 21:30:50 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-12-30 21:30:50 -0800 |
commit | c5b63a9d7ca230ae76aa81bf3294db4a86f2e1f1 (patch) | |
tree | e07d007da7f236417c9361fc08cf098b9677d7e9 /tests/018 | |
parent | e7f65d97c80d3604f8aedf67b057c7b79ea3b183 (diff) | |
download | txr-c5b63a9d7ca230ae76aa81bf3294db4a86f2e1f1.tar.gz txr-c5b63a9d7ca230ae76aa81bf3294db4a86f2e1f1.tar.bz2 txr-c5b63a9d7ca230ae76aa81bf3294db4a86f2e1f1.zip |
android, cygwin: do not try to test crypt.
* tests/018/crypt.tl: Exit with successful termination status
on Android or Cygwin.
Diffstat (limited to 'tests/018')
-rw-r--r-- | tests/018/crypt.tl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/018/crypt.tl b/tests/018/crypt.tl index 3652b6e1..33fd0ac5 100644 --- a/tests/018/crypt.tl +++ b/tests/018/crypt.tl @@ -1,5 +1,8 @@ (load "../common") +(if (meq (os-symbol) :android :cygwin) + (exit)) + (mtest (crypt nil nil) :error (crypt "a" "bc") "bcshMw5X24ayQ" |