diff options
author | Marvin Borner | 2024-03-25 23:54:19 +0100 |
---|---|---|
committer | Marvin Borner | 2024-03-25 23:54:19 +0100 |
commit | 5a2dd4a7e8a6857e8cf32b6fe1524f04962c54cb (patch) | |
tree | 2440ddebde48d1cb2ddaba4b7042544f74f48e50 /std/test_all.sh | |
parent | d13df6b34ebdc6a2d3dd01b081617fe6e88feda8 (diff) |
Add support for context-dependent imports / generics
Diffstat (limited to 'std/test_all.sh')
-rwxr-xr-x | std/test_all.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/test_all.sh b/std/test_all.sh index 32619f3..5792a4c 100755 --- a/std/test_all.sh +++ b/std/test_all.sh @@ -8,7 +8,7 @@ fi echo "# useful for running all tests of the standard library" >All.bruijn echo >>All.bruijn -FILES="$(find * -type f -name "*.bruijn" ! -name "All.bruijn")" +FILES="$(find * -type f -name "*.bruijn" ! -name "All.bruijn" ! -path "*Generic*")" for f in $FILES; do echo ":import std/${f%*.bruijn} ." >>All.bruijn |