diff options
Diffstat (limited to 't/op/crypt.t')
-rw-r--r-- | t/op/crypt.t | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/t/op/crypt.t b/t/op/crypt.t index d11a2a08b7..27c878f1bd 100644 --- a/t/op/crypt.t +++ b/t/op/crypt.t @@ -28,7 +28,10 @@ BEGIN { # bets, given alternative encryption/hashing schemes like MD5, # C2 (or higher) security schemes, and non-UNIX platforms. -ok(substr(crypt("ab", "cd"), 2) ne substr(crypt("ab", "ce"), 2), "salt makes a difference"); +SKIP: { + skip ("VOS crypt ignores salt.", 1) if ($^O eq 'vos'); + ok(substr(crypt("ab", "cd"), 2) ne substr(crypt("ab", "ce"), 2), "salt makes a difference"); +} $a = "a\xFF\x{100}"; |