diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-06-12 00:40:36 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-06-12 00:40:36 +0100 |
| commit | 3622680ecd0f502625ac61ab8477e1a7fd9b06f4 (patch) | |
| tree | 65a52318fe75a019e115dca5dc47e5f40af70c94 /cscript | |
| parent | 3e299e5610b5e5929769a9ced21f8b45f8820d81 (diff) | |
Fix test runner.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -24,7 +24,10 @@ def make_doxygen(target): target.command('doxygen') return os.path.abspath('build/doc/html') -def test(target): +def test(target, test): if target.platform != 'windows': target.set('LC_ALL', 'C') - target.command('run/tests') + if test is None: + target.command('run/tests') + else: + target.command('run/tests --run_test=%s' % test) |
