New templatized linked_list collection

Also updated tests to work with memory changes
This commit is contained in:
Justin C. Miller
2018-09-09 15:32:10 -07:00
parent e7a509176d
commit d5c44645eb
6 changed files with 399 additions and 11 deletions

10
wscript
View File

@@ -203,7 +203,7 @@ def configure(ctx):
for mod_path in ctx.env.LIBRARIES:
ctx.recurse(mod_path)
for mod_path in ctx.env.LIBRARIES:
for mod_path in ctx.env.TOOLS:
ctx.recurse(mod_path)
## Image configuration
@@ -225,6 +225,7 @@ def configure(ctx):
for mod_path in ctx.env.LIBRARIES:
ctx.recurse(mod_path)
ctx.recurse(join("src", "tests"))
@@ -358,6 +359,13 @@ def build(bld):
copy_part.set_outputs([disk])
bld.add_to_group(copy_part)
## Tests
#
elif bld.variant == 'tests':
for mod_path in bld.env.LIBRARIES:
bld.recurse(mod_path)
bld.recurse(join("src", "tests"))
def test(bld):
from os.path import join