summaryrefslogtreecommitdiff
path: root/dub.json
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-03-18 13:03:52 +0100
committerEugen Wissner <belka@caraus.de>2019-03-19 07:45:52 +0100
commit484cb13317921c78468dc3f9c16a0fc786b119c0 (patch)
tree22abd11091872e470112426a97ec9a89809a8e3c /dub.json
parent5ab99cf8873b130284336c52551ccede28f6cb2e (diff)
downloadtanya-484cb13317921c78468dc3f9c16a0fc786b119c0.tar.gz
Separate non-documentation tests from the code
Diffstat (limited to 'dub.json')
-rw-r--r--dub.json17
1 files changed, 15 insertions, 2 deletions
diff --git a/dub.json b/dub.json
index 3fd1ec6..9883955 100644
--- a/dub.json
+++ b/dub.json
@@ -14,7 +14,8 @@
"tanya:sys": "*",
"tanya:os": "*",
"tanya:encoding": "*",
- "tanya:memory": "*"
+ "tanya:middle": "*",
+ "tanya:test": "*"
},
"dependencies-linux": {
@@ -26,7 +27,8 @@
"./sys",
"./os",
"./encoding",
- "./memory"
+ "./middle",
+ "./test"
],
"configurations": [
@@ -47,6 +49,17 @@
"preBuildCommands": ["ninja -C arch"],
"lflags": ["arch/tanya.a"],
"versions": ["TanyaNative"]
+ },
+ {
+ "name": "unittest",
+ "importPaths": [
+ "./source",
+ "./tests"
+ ],
+ "sourcePaths": [
+ "./source",
+ "./tests"
+ ]
}
],