diff options
author | David Robillard <d@drobilla.net> | 2013-03-02 04:12:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-03-02 04:12:15 +0000 |
commit | 48d7ec344299ef6197fc2272c7468d8c234a1730 (patch) | |
tree | 96c9d922377f4c9dd749ebc655295861f49e5700 | |
parent | e2f891daf27d80d860048b0f7ba419d887261705 (diff) | |
download | serd-48d7ec344299ef6197fc2272c7468d8c234a1730.tar.gz serd-48d7ec344299ef6197fc2272c7468d8c234a1730.tar.bz2 serd-48d7ec344299ef6197fc2272c7468d8c234a1730.zip |
Use same base URI for both new test suites.
git-svn-id: http://svn.drobilla.net/serd/trunk@422 490d8e77-9747-427b-9fa3-0b8f29cee8a0
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -509,13 +509,13 @@ def test(ctx): serd_ttl.close() rdf_turtle = 'https://dvcs.w3.org/hg/rdf/raw-file/default/rdf-turtle/' test_manifest(ctx, srcdir, 'new', report, - rdf_turtle + 'coverage/tests/') + rdf_turtle + 'coverage/tests/', 'http://example/base/') test_manifest(ctx, srcdir, 'tests-ttl', report, rdf_turtle + 'tests-ttl/', 'http://example/base/') report.close() - except Exception as e: + except: pass autowaf.post_test(ctx, APPNAME) |