This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
a86deb9
)
The test assumed 7-bit ASCII. Now it "just"
author
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 19 Sep 2001 11:35:55 +0000
(11:35 +0000)
committer
Jarkko Hietaniemi
<jhi@iki.fi>
Wed, 19 Sep 2001 11:35:55 +0000
(11:35 +0000)
assumes 8-bit whatever.
p4raw-id: //depot/perl@12083
t/op/crypt.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/crypt.t
b/t/op/crypt.t
index
457be52
..
8326a09
100644
(file)
--- a/
t/op/crypt.t
+++ b/
t/op/crypt.t
@@
-31,7
+31,7
@@
BEGIN {
SKIP: {
skip "crypt unimplemented", 2, unless $Config{d_crypt};
- ok(substr(crypt("ab", "cd"), 2) ne substr(crypt("ab", "ce"), 2), "salt");
+ ok(substr(crypt("ab", "cd"), 2) ne substr(crypt("ab", "ce"), 2), "salt
makes a difference
");
- ok(crypt("HI", "HO") eq crypt(
v4040.4041, "HO"), "
Unicode");
+ ok(crypt("HI", "HO") eq crypt(
join("",map{chr($_+256)}unpack"C*","HI"), "HO"), "low eight bits of
Unicode");
}