aboutsummaryrefslogtreecommitdiff
path: root/module/hnh (unfollow)
Commit message (Collapse)Author
2023-10-16Add fallback arg for table-get.Hugo Hörnquist
2023-10-16Better test diffs for strings.Hugo Hörnquist
Previously everything was passed through pretty print, meaning that strings would be squashed to one line. Instead handle strings separately, and do a line diff on them, but still pretty print actual scheme structures. Also change display to write to be able to differentiate different forms which prints the same.
2023-10-16Add number of clearifying comments + minor cleanup.Hugo Hörnquist
2023-10-09Handle crashes in tests!Hugo Hörnquist
Unhandled exceptions thrown during tests are now caught, and properly repported. This also allows the tests to run to completion, and print their final summary (which I previously believed was broken when running in multiple threads). Also add --help flag to testrunner...
2023-10-08Document atomic types.Hugo Hörnquist
2023-10-08Further rewrite of testrunner.Hugo Hörnquist
Move many of the atomic procedures into proper libraries.
2023-10-03Cleanup in lens.Hugo Hörnquist
2023-10-02Add TODO comments.Hugo Hörnquist
2023-10-02Rewrite test running system.Hugo Hörnquist
2023-10-02Made displayln into a library export.Hugo Hörnquist
2023-09-12Even more documentation.nextHugo Hörnquist
2023-09-12Add a bunch of documentation.Hugo Hörnquist
2023-09-11Fix bug causing for's continue to not work.Hugo Hörnquist
2023-09-11Clean up and include exception utility documentation.Hugo Hörnquist
2023-09-11Extend `for'-macro to allow improper list elements.Hugo Hörnquist
2023-09-11Change `kvlist->assq` and `group-by` to return pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-09-11Fix seeding of UUIDs.Hugo Hörnquist
2023-09-11Require component for path append.Hugo Hörnquist
Changed the signature of `path-append` to require at least one argument. The alternative would have been that no components expands into '.'.
2023-09-11Add `break` and `continue` support in `for`.Hugo Hörnquist
2023-09-11Enable let-env to unset variables.Hugo Hörnquist
2023-09-07Explicitly import copy-tree (needed since guile 3).Hugo Hörnquist
2023-09-07Create a true all-files-under-directory procedure.Hugo Hörnquist
2023-09-05Major work on, something.Hugo Hörnquist
2023-04-24Add set on top of tree-table.Hugo Hörnquist
2023-04-24Add tree->list, -map, and -fold.Hugo Hörnquist
2023-04-24Add basic table.Hugo Hörnquist
2023-04-21Add xmllint shell-out for normalizing xml trees.Hugo Hörnquist
Used by the serialization format tests which work on xml. Ensures that they don't fail due to whitespace mismatchs. I however still need to ensure that all components are arranged in the correct order, and that namespace prefixes match. This could be improved.
2023-04-18Move test runner to library.Hugo Hörnquist
This will both allow us multiple test entry points, since some integration tests doesn't fit to well in our current unit test setup. It will hopefully also allow me to reuse the code in other projects.
2023-04-12Add with-locale1.Hugo Hörnquist
2023-04-10Add ->port.Hugo Hörnquist
2023-04-10Add eval- and exec-state.Hugo Hörnquist
2023-04-10Add init+last.Hugo Hörnquist
2023-04-10Borrow state-monad from guile-dns.Hugo Hörnquist
Also imports the tests from guile-dns. Minor rewrites have been done, to match a differing project structure.
2023-04-10Fix guile3 deprecation notices.Hugo Hörnquist
2023-02-23Change group-by to return direct pairs.Hugo Hörnquist
Each value in the return of group-by must have exactly two values, so cons pairs (instead of lists) is much better.
2023-02-23Extend `for'-macro to allow improper list elements.Hugo Hörnquist
2023-02-21Change kvlist->assq to return pairs.Hugo Hörnquist
2023-02-21Fix seeding of UUIDs.Hugo Hörnquist
2023-02-11Add test for path-append without components.Hugo Hörnquist
2022-10-16Extend catch to allow pre-unwind handlers.Hugo Hörnquist
2022-10-16Improve source-analyzing module introspection.Hugo Hörnquist
2022-09-23Change NOTE to TODO.Hugo Hörnquist
2022-09-23Move all generally usable scripts to module dir.Hugo Hörnquist
2022-09-18Add procedure module-file-mappings.Hugo Hörnquist
2022-09-18Add uniq to hnh/util.Hugo Hörnquist
2022-09-18Add procedure relative-to.Hugo Hörnquist
2022-07-21Add call-with-tmpfile.Hugo Hörnquist
2022-07-09Move type checking macros to own module.Hugo Hörnquist
2022-07-08Change list-of and pair-of validator to separate macros.Hugo Hörnquist
The functionallity is still the same, but this demonstrates that the system is easily extensible.
2022-07-07Add pair-of to object system.Hugo Hörnquist