Add more "integration" tests

This commit is contained in:
2022-11-02 20:16:29 -04:00
parent 6c652b195c
commit 1451970ca8
3 changed files with 114 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
# -*- python -*-
from pathlib import Path
#
@@ -12,7 +14,7 @@ lib_srcs = ["src/parse.c", "src/memory.c", "src/builtins.c", "src/evaluate.c", "
lib_includes = ["src/"]
test_srcs = ["test/test_parse.c", "test/test_utility.c", "test/test_state.c"]
test_srcs = ["test/test_parse.c", "test/test_utility.c", "test/test_state.c", "test/test_e2e.c"]
test_lib_srcs = ["third-party/unity/src/unity.c"]
test_lib_includes = ["third-party/unity/src/"]