diff options
author | David Robillard <d@drobilla.net> | 2012-02-05 21:41:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-02-05 21:41:35 +0000 |
commit | 7a847c2d5dc449c416c0fa2ee7a7e05d0a241392 (patch) | |
tree | d521dafc1b96b1f7fa00a2740e06e3c9311b6d62 | |
parent | 6fc94e827a02c85ff1c940f7f47ef863f2490953 (diff) | |
download | serd-7a847c2d5dc449c416c0fa2ee7a7e05d0a241392.tar.gz serd-7a847c2d5dc449c416c0fa2ee7a7e05d0a241392.tar.bz2 serd-7a847c2d5dc449c416c0fa2ee7a7e05d0a241392.zip |
Update to r65/autowaf and waf-1.6.10.
git-svn-id: http://svn.drobilla.net/serd/trunk@302 490d8e77-9747-427b-9fa3-0b8f29cee8a0
-rw-r--r-- | src/uri.c | 6 | ||||
-rwxr-xr-x | waf | bin | 91015 -> 91475 bytes | |||
-rw-r--r-- | wscript | 7 |
3 files changed, 11 insertions, 2 deletions
@@ -364,8 +364,10 @@ serd_uri_serialise(const SerdURI* uri, SerdSink sink, void* stream) } while (up > 0 && (--base_last > uri->path_base.buf)); // Write base URI prefix - const size_t base_len = base_last - uri->path_base.buf + 1; - WRITE(uri->path_base.buf, base_len); + if (*base_last == '/') { + const size_t base_len = base_last - uri->path_base.buf + 1; + WRITE(uri->path_base.buf, base_len); + } } else { // Relative path is just query or fragment, append to base URI Binary files differ@@ -316,6 +316,13 @@ def test(ctx): autowaf.run_tests(ctx, APPNAME, ['serd_test'], dirs=['.']) + autowaf.run_tests(ctx, APPNAME, [ + 'serdi_static -o turtle %s/tests/base.ttl "base.ttl" > tests/base.ttl.out' % srcdir], + 0, name='base') + + if not file_equals('%s/tests/base.ttl' % srcdir, 'tests/base.ttl.out'): + Logs.pprint('RED', 'FAIL: build/tests/base.ttl.out is incorrect') + nul = os.devnull autowaf.run_tests(ctx, APPNAME, [ 'serdi_static file://%s/tests/manifest.ttl > %s' % (srcdir, nul), |