-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sogaiu
committed
Jun 1, 2023
1 parent
e97299f
commit 9675411
Showing
41 changed files
with
3,998 additions
and
3,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright (c) 2023 Calvin Rose | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to | ||
# deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
# sell copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
|
||
(import ./helper :prefix "" :exit true) | ||
(start-suite) | ||
|
||
# Array tests | ||
# e05022f | ||
(defn array= | ||
"Check if two arrays are equal in an element by element comparison" | ||
[a b] | ||
(if (and (array? a) (array? b)) | ||
(= (apply tuple a) (apply tuple b)))) | ||
(assert (= (apply tuple @[1 2 3 4 5]) (tuple 1 2 3 4 5)) "array to tuple") | ||
(def arr (array)) | ||
(array/push arr :hello) | ||
(array/push arr :world) | ||
(assert (array= arr @[:hello :world]) "array comparison") | ||
(assert (array= @[1 2 3 4 5] @[1 2 3 4 5]) "array comparison 2") | ||
(assert (array= @[:one :two :three :four :five] | ||
@[:one :two :three :four :five]) "array comparison 3") | ||
(assert (array= (array/slice @[1 2 3] 0 2) @[1 2]) "array/slice 1") | ||
(assert (array= (array/slice @[0 7 3 9 1 4] 2 -2) @[3 9 1]) "array/slice 2") | ||
|
||
# Array remove | ||
# 687a3c9 | ||
(assert (deep= (array/remove @[1 2 3 4 5] 2) @[1 2 4 5]) "array/remove 1") | ||
(assert (deep= (array/remove @[1 2 3 4 5] 2 2) @[1 2 5]) "array/remove 2") | ||
(assert (deep= (array/remove @[1 2 3 4 5] 2 200) @[1 2]) "array/remove 3") | ||
(assert (deep= (array/remove @[1 2 3 4 5] -3 200) @[1 2 3]) "array/remove 4") | ||
|
||
(end-suite) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright (c) 2023 Calvin Rose | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to | ||
# deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
# sell copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
|
||
(import ./helper :prefix "" :exit true) | ||
(start-suite) | ||
|
||
# Assembly test | ||
# Fibonacci sequence, implemented with naive recursion. | ||
# a679f60 | ||
(def fibasm (asm '{ | ||
:arity 1 | ||
:bytecode [ | ||
(ltim 1 0 0x2) # $1 = $0 < 2 | ||
(jmpif 1 :done) # if ($1) goto :done | ||
(lds 1) # $1 = self | ||
(addim 0 0 -0x1) # $0 = $0 - 1 | ||
(push 0) # push($0), push argument for next function call | ||
(call 2 1) # $2 = call($1) | ||
(addim 0 0 -0x1) # $0 = $0 - 1 | ||
(push 0) # push($0) | ||
(call 0 1) # $0 = call($1) | ||
(add 0 0 2) # $0 = $0 + $2 (integers) | ||
:done | ||
(ret 0) # return $0 | ||
] | ||
})) | ||
|
||
(assert (= 0 (fibasm 0)) "fibasm 1") | ||
(assert (= 1 (fibasm 1)) "fibasm 2") | ||
(assert (= 55 (fibasm 10)) "fibasm 3") | ||
(assert (= 6765 (fibasm 20)) "fibasm 4") | ||
|
||
# dacbe29 | ||
(def f (asm (disasm (fn [x] (fn [y] (+ x y)))))) | ||
(assert (= ((f 10) 37) 47) "asm environment tables") | ||
|
||
(end-suite) | ||
|
Oops, something went wrong.