summary refs log tree commit diff
path: root/pkgs/lib/debug.nix
Commit message (Collapse)AuthorAge
* testAllTrue helper functionMarc Weber2009-11-22
| | | | svn path=/nixpkgs/trunk/; revision=18540
* nix lang runTests: ignore tests which are not prefixed by "test"Marc Weber2009-11-22
| | | | svn path=/nixpkgs/trunk/; revision=18537
* add some debugging functionsMarc Weber2009-11-22
| | | | | | traceCallXml is used to trace arguments and result svn path=/nixpkgs/trunk/; revision=18536
* * Improve showVal: handle integer and strings.Nicolas Pierron2009-11-14
| | | | svn path=/nixpkgs/trunk/; revision=18346
* svn path=/nixpkgs/trunk/; revision=16412Eelco Dolstra2009-07-17
|
* Add a description of values which cause a bad type the failure.Nicolas Pierron2009-06-26
| | | | svn path=/nixpkgs/trunk/; revision=16054
* removed all __primops from nixpkgsMarc Weber2009-05-24
| | | | svn path=/nixpkgs/trunk/; revision=15693
* * Added some regression tests for lib that I wrote a while ago butEelco Dolstra2009-03-31
| | | | | | didn't commit. Also, run the tests when making a Nixpkgs tarball. svn path=/nixpkgs/trunk/; revision=14802
* tidied up pkgs/lib/debug.nixMarc Weber2009-03-25
| | | | | | | | | | | | | | more consistent naming: debugVal -> traceVal debugXMLVal -> traceXMLVal whatis -> showVal traceWhatis -> traceShowVal traceMarked -> traceShowValMarked removed some parenthesis svn path=/nixpkgs/trunk/; revision=14701
* moved debugging functions into lib module "debug"Marc Weber2009-03-06
| | | | svn path=/nixpkgs/trunk/; revision=14430
* add error context to all top level attr names of all-packages.nixMarc Weber2009-03-06
| | | | svn path=/nixpkgs/trunk/; revision=14429
* * Split lib/default.nix into several files, as it had become a bigEelco Dolstra2009-02-09
mess. Also cleaned up some functions: - foldl appeared broken (it recursively called fold). - Renamed logicalAND/logicalOR to and/or. - Removed listOfListsToAttrs, eqStrings: obsolete. - Removed isInList, which does the same thing as elem. - stringToCharacters: don't return a "" at the end of the list. - Renamed concatList to concat, as concatList (singular) is a misnomer: it takes two lists. Likewise, renamed mergeAttr to mergeAttrs. misc.nix still contains a lot of stuff that should be refactored and moved to other files. svn path=/nixpkgs/trunk/; revision=14013