diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2024-03-28 15:30:43 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2024-03-28 15:30:43 -0400 |
commit | 94b766444ae5559a973c1800ea36604e6009d67c (patch) | |
tree | 98e4e49e1ab3f62235c1d073d226c1d06c81b956 | |
parent | e25e5ecbf1ce7cbb064a10d4b7afc69687bef8e9 (diff) |
Update test readme
-rw-r--r-- | tests/README.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/README.md b/tests/README.md index b32c706..c88089a 100644 --- a/tests/README.md +++ b/tests/README.md @@ -2,13 +2,10 @@ This is a folder of all current tests for tnsl. Each compiled program should return a status of 69. -To compile: +To compile all tests: -First run ./build.sh in the parent directory to generate the compiler -Second make sure you have nasm and gcc installed + make - ../ctc <file to compile> - nasm -f elf64 -o out.o out.asm - gcc out.o +To check all tests: -The final executable should be in this directory called "a.out" + ./run.sh |