commit 3eb13620a82be98fefe788548cb782c047ad3147 parent 3da1af90a0be332d53b38e85731426d7b73da4f5 Author: Andrew Alderwick <andrew@alderwick.co.uk> Date: Mon, 30 Aug 2021 19:03:17 +0100 Excluded library snippets from asma-test.sh Diffstat:
M | etc/asma-test.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/etc/asma-test.sh b/etc/asma-test.sh @@ -33,7 +33,7 @@ expect_failure() { echo 'Assembling asma with uxnasm' build_asma > asma.tal ../bin/uxnasm asma.tal asma.rom > uxnasm.log -for F in $(find ../projects -type f -name '*.tal' -not -name 'blank.tal'); do +for F in $(find ../projects -path ../projects/library -prune -false -or -type f -name '*.tal' -not -name 'blank.tal'); do echo "Comparing assembly of ${F}" BN="$(basename "${F%.tal}")"