diff options
m--------- | waflib | 0 | ||||
-rw-r--r-- | wscript | 5 |
2 files changed, 3 insertions, 2 deletions
diff --git a/waflib b/waflib -Subproject de76b89dc1039e2f7d6c6b229a8950156b0e5c9 +Subproject c87cc53c643c60867665b333d5999fe07196d54 @@ -105,8 +105,9 @@ def build(bld): autowaf.build_dox(bld, 'RAUL', RAUL_VERSION, top, out) def test(tst): - for t in tests: - tst([os.path.join('./test', t)]) + with tst.group('Unit') as check: + for t in tests: + check([os.path.join('./test', t)]) def lint(ctx): "checks code for style issues" |