diff options
author | David Robillard <d@drobilla.net> | 2017-07-30 10:38:24 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-07-30 10:38:24 +0200 |
commit | 1cd321825c52eddd4175cb4ec58ae8d7ad2da48d (patch) | |
tree | 19bc42965ba2e3cfc16570279678b10f9c3b314e /wscript | |
parent | f15d475b73b994297dfebe522896acf0d0b7c471 (diff) | |
download | serd-1cd321825c52eddd4175cb4ec58ae8d7ad2da48d.tar.gz serd-1cd321825c52eddd4175cb4ec58ae8d7ad2da48d.tar.bz2 serd-1cd321825c52eddd4175cb4ec58ae8d7ad2da48d.zip |
Support strict parsing of prefixed names
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SERD_VERSION = '0.28.0' +SERD_VERSION = '0.29.1' SERD_MAJOR_VERSION = '0' # Mandatory waf variables @@ -486,7 +486,7 @@ def test(ctx): # Bad tests autowaf.begin_tests(ctx, APPNAME, 'bad') for test in bad_tests: - for lax in ['', '-l']: + for lax in ['']: autowaf.run_test( ctx, APPNAME, 'serdi_static %s -i %s -q "%s" "%s" > %s.out' % ( |