summaryrefslogtreecommitdiff
path: root/lib/AnyDBM_File.t
Commit message (Collapse)AuthorAgeFilesLines
* remove an obsolete special case for VOS handling of permissions in AnyDBM_File.tPaul Green2013-06-031-1/+1
|
* Remove a couple of tentacles from MiNT missed by commit cd86ed9d430a95bb.Nicholas Clark2012-09-211-1/+1
|
* Remove Mac OS classic code from tests in lib.Nicholas Clark2011-01-181-1/+1
| | | | | Including all @INC setting boilerplate from lib/Tie/ExtraHash.t, which TestInit now performs.
* Change from a hard coded temporary file name in lib/AnyDBM_File.t.Nicholas Clark2010-01-251-7/+8
| | | | | | Previously lib/AnyDBM_File.t and lib/DBM_Filter/t/*t shared the same hard coded filename for their test database, causing a race condition during parallel testing, and some spurious test failures.
* Mark all .t and .pm files as non executableRafael Garcia-Suarez2009-06-061-0/+0
|
* Pulling ancient RCS commentsAndy Lester2005-11-201-2/+0
| | | | | Message-ID: <20051119061639.GA25086@petdance.com> p4raw-id: //depot/perl@26178
* lib/AnyDBM_File.t incorrectly passes even without any dbmAndy Dougherty2002-04-031-6/+1
| | | | | Message-ID: <Pine.SOL.4.10.10204031607030.20955-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@15720
* Set @INC earlierAndy Dougherty2002-04-031-5/+3
| | | | | Message-ID: <Pine.SOL.4.10.10204031618150.20955-100000@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@15717
* lib/AnyDBM_File.t -- VOS fix Paul Green2002-01-201-1/+1
| | | | | Message-Id: <200201191932.OAA05601@mailhub1.stratus.com> p4raw-id: //depot/perl@14359
* [REPATCH] RE: [PATCH lib/AnyDBM_File.t] null key support back in DB v3Jonathan Stowe2002-01-111-2/+2
| | | | | Message-ID: <Pine.LNX.4.33.0201110927480.10327-100000@orpheus.gellyfish.com> p4raw-id: //depot/perl@14186
* Convert to Test::MoreJonathan Stowe2002-01-111-29/+38
| | | | | Message-ID: <Pine.LNX.4.33.0201101948360.9717-100000@orpheus.gellyfish.com> p4raw-id: //depot/perl@14184
* More DOSish permission semantics for Cygwin.Jarkko Hietaniemi2001-06-231-2/+4
| | | p4raw-id: //depot/perl@10861
* The Grand Trek: move the *.t files from t/ to lib/ and ext/.Jarkko Hietaniemi2001-06-181-0/+155
No doubt I made some mistakes like missed some files or misnamed some files. The naming rules were more or less: (1) if the module is from CPAN, follows its ways, be it t/*.t or test.pl. (2) otherwise if there are multiple tests for a module put them in a t/ (3) otherwise if there's only one test put it in Module.t (4) helper files go to module/ (locale, strict, warnings) (5) use longer filenames now that we can (but e.g. the compat-0.6.t and the Text::Balanced test files still were renamed to be more civil against the 8.3 people) installperl was updated appropriately not to install the *.t files or the help files from under lib. TODO: some helper files still remain under t/ that could follow their 'masters'. UPDATE: On second thoughts, why should they. They can continue to live under t/lib, and in fact the locale/strict/warnings helpers that were moved could be moved back. This way the amount of non-installable stuff under lib/ stays smaller. p4raw-id: //depot/perl@10676