And in a run configured with:
@ configure "-Dusevmsdebug" "-des"
I obtain:
All tests successful.
u=105.76 s=0 cu=0 cs=0 scripts=734 tests=75780
For what it is worth this may fix the problem of the extraneous files
generated during "mmk test" (I do not know why this problem
affects VMS per se. It may affect other platforms for all I know):
--- lib/memoize/t/tie_sdbm.t;1 Mon Sep 15 10:20:03 2003
+++ lib/Memoize/t/tie_sdbm.t Mon Sep 15 15:25:14 2003
@@ -37,8 +37,14 @@
}
$file = catfile($tmpdir, "md$$");
1 while unlink $file, "$file.dir", "$file.pag";
+if ( $^O eq 'VMS' ) {
+ 1 while unlink "$file.sdbm_dir";
+}
tryout('Memoize::SDBM_File', $file, 1); # Test 1..4
1 while unlink $file, "$file.dir", "$file.pag";
+if ( $^O eq 'VMS' ) {
+ 1 while unlink "$file.sdbm_dir";
+}
sub tryout {
my ($tiepack, $file, $testno) = @_;
End of Patch.
(See attached file: tie_sdbm.patch)
Peter Prymmer
[EMAIL PROTECTED] wrote on 09/15/2003 01:12:27 PM:
>
> Configured with:
>
> @ Configure "-des"
>
> mmk test results:
>
> All tests successful.
> u=97.34 s=0 cu=0 cs=0 scripts=734 tests=75780
tie_sdbm.patch
Description: Binary data
