source:
trunk/essentials/dev-lang/perl/NetWare/t/NWScripts.pl
| Last change on this file was 3181, checked in by , 19 years ago | |
|---|---|
| File size: 6.4 KB | |
| Line | |
|---|---|
| 1 | |
| 2 | |
| 3 | print "\nGenerating automated scripts for NetWare...\n\n\n"; |
| 4 | |
| 5 | |
| 6 | use File::Basename; |
| 7 | use File::Copy; |
| 8 | |
| 9 | chdir '/perl/scripts/'; |
| 10 | $DirName = "t"; |
| 11 | |
| 12 | # These scripts have problems (either abend or hang) as of now (11 May 2001). |
| 13 | # So, they are commented out in the corresponding auto scripts, io.pl and lib.pl |
| 14 | @ScriptsNotUsed = ("t/io/openpid.t", "t/lib/filehandle.t", "t/lib/memoize/t/expire_module_t.t", "t/lib/NEXT/t/next.t", "t/lib/Math/BigInt/t/require.t", "t/ext/B/t/debug.t", "t/lib/IPC/Open3.t", "t/ext/B/t/showlex.t", "t/op/subst_wamp.t", "t/uni/upper.t", "t/lib/Net/t/ftp.t", "t/op/sort.t", "t/ext/POSIX/t/posix.t", "t/lib/CPAN/t/loadme.t", "t/lib/CPAN/t/vcmp.t"); |
| 15 | |
| 16 | opendir(DIR, $DirName); |
| 17 | @Dirs = readdir(DIR); |
| 18 | close(DIR); |
| 19 | foreach $DirItem(@Dirs) |
| 20 | { |
| 21 | $DirItem1 = $DirName."/".$DirItem; |
