home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / MacPerl 5.1.3 / Mac_Perl_513_src / perl5.002 / t / harness next >
Encoding:
Text File  |  1996-03-14  |  351 b   |  16 lines  |  [TEXT/MPS ]

  1. #!./perl
  2.  
  3. # We suppose that perl _mostly_ works at this moment, so may use
  4. # sophisticated testing.
  5.  
  6. # Note that _before install_ you may need to run it with -I ../lib flag
  7.  
  8. use lib '../lib';
  9. use Test::Harness;
  10.  
  11. $Test::Harness::switches = "";    # Too much noise otherwise
  12.  
  13. @tests = @ARGV;
  14. @tests = <*/*.t> unless @tests;
  15. Test::Harness::runtests @tests;
  16.