diff options
author | David Robillard <d@drobilla.net> | 2016-07-14 15:48:58 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-07-14 15:48:58 -0400 |
commit | d92e316db4d5e28a05400d834e9f43c592f764fb (patch) | |
tree | ac071034fc96d97cd096c24e0a5d72f4d8b7f2d1 /wscript | |
parent | 84ec2ee47279f87b4ed9ee44c9153f52a97732da (diff) | |
download | lilv-d92e316db4d5e28a05400d834e9f43c592f764fb.tar.gz lilv-d92e316db4d5e28a05400d834e9f43c592f764fb.tar.bz2 lilv-d92e316db4d5e28a05400d834e9f43c592f764fb.zip |
Improve test coverage
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -21,14 +21,19 @@ VERSION = LILV_VERSION # Package version for waf dist top = '.' # Source directory out = 'build' # Build directory -test_plugins = ['missing_descriptor', - 'missing_plugin', - 'missing_name', - 'missing_port_name', - 'lib_descriptor', - 'failed_lib_descriptor', - 'old_version', - 'new_version'] +test_plugins = [ + 'bad_syntax', + 'failed_instantiation', + 'failed_lib_descriptor', + 'lib_descriptor', + 'missing_descriptor', + 'missing_name', + 'missing_plugin', + 'missing_port', + 'missing_port_name', + 'new_version', + 'old_version' +] def options(opt): opt.load('compiler_c') |