diff options
author | Craig A. Berry <craigberry@mac.com> | 2002-03-27 09:22:13 -0600 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-27 21:09:20 +0000 |
commit | b328b5014aab0f2b3da5a87f9e04fca1b7020983 (patch) | |
tree | f9a85cca2838d01fa666d67fda21e74dc34746ae /t/lib/1_compile.t | |
parent | fe4b3f2217b0673e1a826e8cf7a98a9a41beb70b (diff) | |
download | perl-b328b5014aab0f2b3da5a87f9e04fca1b7020983.tar.gz |
1_compile.t fix for VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-Id: <5.1.0.14.2.20020327150907.01b17470@exchi01>
p4raw-id: //depot/perl@15554
Diffstat (limited to 't/lib/1_compile.t')
-rw-r--r-- | t/lib/1_compile.t | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/t/lib/1_compile.t b/t/lib/1_compile.t index 921aa6fb08..20e26ef082 100644 --- a/t/lib/1_compile.t +++ b/t/lib/1_compile.t @@ -37,8 +37,10 @@ if (@Core_Modules) { my $test_num = 2; foreach my $module (@Core_Modules) { - print "$module compile failed\nnot " unless compile_module($module); - print "ok $test_num\n"; + my $todo = ''; + $todo = "# TODO $module needs porting on $^O" if $module eq 'ByteLoader' && $^O eq 'VMS'; + print "# $module compile failed\nnot " unless compile_module($module); + print "ok $test_num $todo\n"; $test_num++; } |