split tests into global and local

This commit is contained in:
zongor 2026-04-10 23:03:54 -07:00
parent 9d7fdbb622
commit d11bad79ec
4 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View File

@ -105,4 +105,5 @@ flycheck_*.el
# project specific # project specific
out/ out/
.ccls-cache/ .ccls-cache/
.vscode/ .vscode/
.vorg.db

2
test/local.tal Normal file
View File

@ -0,0 +1,2 @@
|100 @main ( -> )
!{ &i $2 } #007a ,/i STR2 !{ &j $2 } #0020 ,/j STR2 ,/i LDR2 ,/j LDR2 SUB2 #18 DEO

6
test/local.ul Executable file
View File

@ -0,0 +1,6 @@
function main() {
int i = 122;
int j = 32;
print((i - j)); // prints ascii `Z`
}