aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_reader_writer.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-08-12 13:42:25 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:08 -0500
commit8346ac7f529f5aeb8d8b0e48837e680ea14e8893 (patch)
tree0e1aa8f67135af24cbbfe5a5911b1a74e5699df6 /test/test_reader_writer.c
parent3ea3143632e3577ac5794faed1141e460a11a9fb (diff)
downloadserd-8346ac7f529f5aeb8d8b0e48837e680ea14e8893.tar.gz
serd-8346ac7f529f5aeb8d8b0e48837e680ea14e8893.tar.bz2
serd-8346ac7f529f5aeb8d8b0e48837e680ea14e8893.zip
Make blank node prefixing automatic
Though potentially useful, I don't think the complexity cost of the old interface (both to the implementation and to the user) is worth it. A special tool to transform blank node labels (for example with regular expressions) would be a better approach to this if it's ever needed in the future.
Diffstat (limited to 'test/test_reader_writer.c')
-rw-r--r--test/test_reader_writer.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/test_reader_writer.c b/test/test_reader_writer.c
index aea0976d..9a4c988f 100644
--- a/test/test_reader_writer.c
+++ b/test/test_reader_writer.c
@@ -151,9 +151,6 @@ test_writer(const char* const path)
assert(writer);
- serd_writer_chop_blank_prefix(writer, "tmp");
- serd_writer_chop_blank_prefix(writer, NULL);
-
SerdNode* lit = serd_node_new(NULL, serd_a_string("hello"));
const SerdSink* const iface = serd_writer_sink(writer);
@@ -273,17 +270,6 @@ test_reader(const char* path)
assert(serd_reader_read_chunk(reader) == SERD_BAD_CALL);
assert(serd_reader_read_document(reader) == SERD_BAD_CALL);
- serd_reader_add_blank_prefix(reader, "tmp");
-
-#if defined(__GNUC__)
-# pragma GCC diagnostic push
-# pragma GCC diagnostic ignored "-Wnonnull"
-#endif
- serd_reader_add_blank_prefix(reader, NULL);
-#if defined(__GNUC__)
-# pragma GCC diagnostic pop
-#endif
-
SerdInputStream in = serd_open_input_file(path);
assert(!serd_reader_start(reader, &in, NULL, 4096));
assert(!serd_reader_read_document(reader));