Name Date Size

.. 2012-09-27 22:35:37 3

opcode.pl 2012-09-27 22:35:37 29.5 KiB

README 2012-09-27 22:35:37 673

safe1.t 2012-09-27 22:35:37 1.7 KiB

safe2.t 2012-09-27 22:35:37 3.9 KiB

safe3.t 2012-09-27 22:35:37 1.1 KiB

safeload.t 2012-09-27 22:35:37 536

safeops.t 2012-09-27 22:35:37 7.7 KiB

safesort.t 2012-09-27 22:35:37 1.5 KiB

safeuniversal.t 2012-09-27 22:35:37 957

safeutf8.t 2012-09-27 22:35:37 1.3 KiB

safewrap.t 2012-09-27 22:35:37 1.2 KiB

README

Since one test (safeops.t) requires opcode.pl which is not available in perl
5.8.4. I added this file from latest perl next to the test (distrib/ext/Safe/t)
I had to modify safeops.t so that it can find the file opcode.pl (the test
expects the file to be in distrib directory)
--- /home/vm156888/Safe-2.28/t/safeops.t po zář 13 15:16:38 2010
+++ usr/src/cmd/perl/5.8.4/distrib/ext/Safe/t/safeops.t st srp 4 11:36:37 2010
@@ -28,7 +28,7 @@
$code{$1} = $2;
}
-open my $fh, '<', '../../opcode.pl' or die "Can't open opcode.pl: $!";
+open my $fh, '<', '../ext/Safe/t/opcode.pl' or die "Can't open opcode.pl: $!";
while (<$fh>) {
last if /^__END__/;
}