diff options
| author | 2025-11-01 22:29:42 -0400 | |
|---|---|---|
| committer | 2025-11-01 22:29:42 -0400 | |
| commit | 44e4fd1e1f914e5b307435769c8909da8a72aafb (patch) | |
| tree | 0c5e707c836f646229462adb08314ac8988e2d14 /cuprate.egg | |
| parent | add expect-to-fail (diff) | |
Big rewrite:
1. Rename to "cuprate".
2. Remove mutexes.
3. Move rewriters to other library.
4. Move the DTO out of the `test-info` parameter. They are now separate
parameters, with the expectation that the DTO will not change over
time. This significantly reduces the complexity of the code.
5. Use SRFI-146 for Chicken.
Diffstat (limited to 'cuprate.egg')
| -rw-r--r-- | cuprate.egg | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/cuprate.egg b/cuprate.egg new file mode 100644 index 0000000..90c7d09 --- /dev/null +++ b/cuprate.egg @@ -0,0 +1,15 @@ +((author "Peter McGoron") + (version "0.2.0") + (synopsis "A portable testing suite") + (category "test") + (license "BSD 0-clause") + (dependencies "r7rs" "srfi-128" "srfi-146" "srfi-225") + (components (extension cuprate + (source "lib/cuprate.sld") + (source-dependencies "lib/cuprate.scm") + (component-dependencies cuprate.rewriters) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension cuprate.rewriters + (source "lib/cuprate/rewriters.chicken.sld") + (csc-options "-R" "r7rs" "-X" "r7rs")) + ))) |
