summaryrefslogtreecommitdiff
path: root/t/TEST
Commit message (Collapse)AuthorAgeFilesLines
* ExtUtils-Install tests need abs_path @INC for utf8H.Merijn Brand2009-10-231-1/+2
|
* Remove the "hack" that removes SVt_UTF8 in the UTF16 filter, by fixing t/TESTNicholas Clark2009-10-221-1/+1
| | | | | Given that t/TEST already had code to add -I../lib when testing UTF-8 with -utf8, do likewise for testing UTF-16 with -utf16.
* Default to running tests in cpan/ with relative paths for perl and @INCNicholas Clark2009-10-111-6/+40
| | | | | Explicitly turn paths absolute for the 33 extensions in cpan/ that fail tests with relative paths.
* Run tests in ext/ and dist/ with relative paths for perl and @INC.Nicholas Clark2009-10-111-6/+8
| | | | | Also, as only tests in cpan/ are using %no_abs and %temp_no_core, only consult these look-up hashes for tests in cpan/
* Avoid using ++, op= and anon hash constructors in the testing code.Nicholas Clark2009-10-091-14/+14
| | | | | | {} could be misparsed, ++ has a lot of internal implementation "magic" that we don't need, but don't want to trip us up if it isn't working, and op= isn't necessary when we already rely on the more general $a = $b op $c working.
* Move Time::HiRes from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Test::Simple from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Pod::Simple from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Pod::Parser from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move parent from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move MIME::Base64 from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Math::BigRat from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Math::BigInt from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move IO::Compress from ext/ to cpan/Nicholas Clark2009-10-021-1/+1
|
* Move Compress::Raw::Zlib from ext/ to cpan/Nicholas Clark2009-10-011-1/+1
|
* Move Compress::Raw::Bzip2 from ext/ to cpan/Nicholas Clark2009-10-011-1/+1
|
* Move B::Debug from ext/ to cpan/Nicholas Clark2009-10-011-1/+1
|
* Move t/pod/diag.t to t/porting, as it's really a code consistency test.Nicholas Clark2009-10-011-1/+0
| | | | It was the last test in t/pod, which allows us to remove the directory.
* Move Unicode::Collate from ext/ to dist/Nicholas Clark2009-09-301-1/+1
|
* Move Unicode::Normalize from ext/ to cpan/Nicholas Clark2009-09-301-1/+1
|
* Tests running in cpan (and dist) are also allowed to generate noisy TAP.Nicholas Clark2009-09-271-1/+1
|
* Remove IPC::SysV from the list of PERL_CORE=1 testing exceptions.Nicholas Clark2009-09-271-1/+0
| | | | | | One of its tests was forcibly setting @INC when $ENV{PERL_CORE} is true. That's not just unnecessary now, it's actively counter-productive, because tests in @ext are running from their extension's directory, not the core's t directory.
* Support building extensions in dist/ as well as cpan/ and ext/Nicholas Clark2009-09-261-2/+2
|
* Move Devel::PPPort from ext/ to cpan/Nicholas Clark2009-09-261-1/+1
|
* Move Tie::RefHash from ext/ to cpan/Nicholas Clark2009-09-261-1/+1
|
* Move podlators from ext/ to cpan/Nicholas Clark2009-09-261-1/+1
|
* Move Parse::CPAN::Meta from ext/ to cpan/Nicholas Clark2009-09-261-1/+1
|
* Move NEXT from ext/ to cpan/Nicholas Clark2009-09-261-1/+1
|
* Tests in cpan/ should run from their directory, as tests in ext/ already do.Nicholas Clark2009-09-261-4/+4
|
* Move Test::Simple from lib to ext.Nicholas Clark2009-09-131-0/+1
|
* Use alternative URLs for links which are now broken (link rot)Leon Brocard2009-09-131-1/+1
|
* Move Unicode::Collate from lib to ext.Nicholas Clark2009-09-131-0/+1
|
* Move NEXT from lib to ext.Nicholas Clark2009-09-131-0/+1
|
* Move Getopt::Long from lib to ext.Nicholas Clark2009-09-131-0/+1
|
* Move Pod::Parser from lib (and t/pod) to ext.Nicholas Clark2009-09-131-1/+10
|
* Move podlators from lib to ext.Nicholas Clark2009-09-131-0/+1
|
* Move Pod::Simple from lib to ext.Nicholas Clark2009-09-131-0/+1
| | | | | In the process, unpack the "packed" files. These were the last files uunecoded, so now uupacktool.pl is obsolete, and can be retired.
* Moved parent from lib/ to ext/Chris Williams2009-09-121-0/+1
|
* Moved Tie-RefHash from lib/ to ext/Chris Williams2009-09-111-0/+1
|
* Moved Math-BigInt from lib/ to ext/Chris Williams2009-09-111-0/+1
|
* Move Math-BigRat from lib/ to ext/Chris Williams2009-09-101-0/+1
|
* move regex related tests out of t/op/ into t/re/Yves Orton2009-09-101-1/+1
|
* Move Parse::CPAN::Meta from lib/ to ext/Chris Williams2009-09-071-0/+1
|
* Make Encode tests work with $PERL_CORE in the environmentRafael Garcia-Suarez2009-09-071-1/+0
|
* Set @INC to ../lib if we're running in t, else modules can't be required.Nicholas Clark2009-09-051-0/+3
| | | | | (Either explicity, or the possible implicit require utf8; inside the regexp engine.)
* _run_test() doesn't need to conform to TAP::Harness exec callback interface ↵Vincent Pit2009-09-011-8/+4
| | | | anymore
* Fix include path for utf8 testsVincent Pit2009-09-011-1/+1
|
* Don't use the anonymous hash reference constructor in t/TESTVincent Pit2009-09-011-2/+4
|
* Don't quote -T/-t in _scan_test()Vincent Pit2009-08-311-2/+2
| | | | This should only be needed on VMS, and _quote_args() will take care of it.
* Put the chdir logic into the two new helpers _before_fork() and _after_fork()Vincent Pit2009-08-311-9/+25
|