aboutsummaryrefslogtreecommitdiffhomepage
path: root/std
diff options
context:
space:
mode:
authorMarvin Borner2024-02-16 17:40:52 +0100
committerMarvin Borner2024-02-16 17:48:04 +0100
commit241315c452b1b06e4b9721cf336d9ab150f7234d (patch)
treef1d03bbed031d75ac23360310cbbef8a1034a735 /std
parentf3dc81930ebbc6727f9a796f71dceffbcb753752 (diff)
Added basic stdlib CI
Diffstat (limited to 'std')
-rw-r--r--std/Float.bruijn6
-rwxr-xr-xstd/test_all.sh16
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