diff options
author | Marvin Borner | 2024-02-16 17:40:52 +0100 |
---|---|---|
committer | Marvin Borner | 2024-02-16 17:48:04 +0100 |
commit | 241315c452b1b06e4b9721cf336d9ab150f7234d (patch) | |
tree | f1d03bbed031d75ac23360310cbbef8a1034a735 /std | |
parent | f3dc81930ebbc6727f9a796f71dceffbcb753752 (diff) |
Added basic stdlib CI
Diffstat (limited to 'std')
-rw-r--r-- | std/Float.bruijn | 6 | ||||
-rwxr-xr-x | std/test_all.sh | 16 |
2 files changed, 19 insertions, 3 deletions
diff --git a/std/Float.bruijn b/std/Float.bruijn index d2ed080..c272d2b 100644 --- a/std/Float.bruijn +++ b/std/Float.bruijn @@ -6,14 +6,14 @@ :import std/Combinator . :import std/Number . -:import std/Pair P +:import std/Pair . pi (+3) : (+14159) # generates a float from a normal balanced ternary number -float! \(P.…:…) (+0) +float! \…:… (+0) # adds two floating numbers # TODO: Carry support # - needed: mod, div (?) -> ternary carry != decimal carry -add P.zip-with …+… +add zip-with …+… diff --git a/std/test_all.sh b/std/test_all.sh new file mode 100755 index 0000000..8b0740a --- /dev/null +++ b/std/test_all.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +echo "# useful for running all tests of the standard library" >All.bruijn +echo >>All.bruijn + +FILES="$(find * -type f -name "*.bruijn" ! -name "All.bruijn")" + +for f in $FILES; do + echo ":import std/${f%*.bruijn} ." >>All.bruijn +done + +# for ci, just run `bruijn All.bruijn` +echo >>All.bruijn +echo "main [[0]]" >>All.bruijn + +stack run -- All.bruijn | grep "ERROR" && exit 1 || exit 0 |