From 077ba2fd088d28ddde12a99eab079802bc281de2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Apr 2019 12:40:36 +0200 Subject: Run unit tests on Windows --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wscript') diff --git a/wscript b/wscript index a5ffa3b..c2747f4 100644 --- a/wscript +++ b/wscript @@ -446,7 +446,8 @@ def lint(ctx): def test(tst): with tst.group('Unit') as check: - for test in tst.path.get_bld().ant_glob('**/*-test'): + pattern = tst.env.cprogram_PATTERN % '**/*-test' + for test in tst.path.get_bld().ant_glob(pattern): check([str(test)]) class Dist(Scripting.Dist): -- cgit v1.2.1