diff options
author | bd <bdunahu@operationnull.com> | 2025-01-12 15:10:23 -0700 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-01-12 15:10:23 -0700 |
commit | 000b28c88bbfd1fde94b5e01ce2766230077e013 (patch) | |
tree | 2da470f7fe73f4d1e6ba3cbf25db9c89aa2ff5eb /src/unit-tests/utils | |
parent | 2bc7c77b7f63b1df0340112db6272dc9a78139c1 (diff) |
Expansion of complex expressions into set of instructions
Diffstat (limited to 'src/unit-tests/utils')
-rw-r--r-- | src/unit-tests/utils/t-factory.test.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/unit-tests/utils/t-factory.test.scm b/src/unit-tests/utils/t-factory.test.scm new file mode 100644 index 0000000..eda983b --- /dev/null +++ b/src/unit-tests/utils/t-factory.test.scm @@ -0,0 +1,19 @@ +;; -*- compile-command: "guile -L ./src ./src/unit-tests/utils/t-factory.test.scm"; -*- +(use-modules (srfi srfi-64) + (modules ast assembly-tree) + (modules utils t-factory)) + + +(test-begin "t-factory-harness") + + +(test-equal "make first temporary" + 't.101 + (temporary-name (make-t))) + +(test-equal "make second temporary" + 't.102 + (temporary-name (make-t))) + + +(test-end "t-factory-harness") |