aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-07-09 21:36:52 -0400
committerDavid Robillard <d@drobilla.net>2023-12-02 18:49:07 -0500
commit06bc73c6fdf986eb5d13943b497992a947661bb1 (patch)
tree23d43aa2429696bc27bc3d1c5ec2fcf7def995ff /test
parent7219a81ad6cff840eb604983b3752d4f2097532a (diff)
downloadserd-06bc73c6fdf986eb5d13943b497992a947661bb1.tar.gz
serd-06bc73c6fdf986eb5d13943b497992a947661bb1.tar.bz2
serd-06bc73c6fdf986eb5d13943b497992a947661bb1.zip
Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX
The unset value for flags should represent the best default, which in this case is strict parsing. Lax parsing is the riskier opt-in option.
Diffstat (limited to 'test')
-rw-r--r--test/test_reader_writer.c11
-rw-r--r--test/test_writer.c8
2 files changed, 9 insertions, 10 deletions
diff --git a/test/test_reader_writer.c b/test/test_reader_writer.c
index abea37b3..3cacd4be 100644
--- a/test/test_reader_writer.c
+++ b/test/test_reader_writer.c
@@ -370,9 +370,8 @@ faulty_sink(const void* const buf,
static void
test_write_errors(void)
{
- SerdWorld* const world = serd_world_new();
- ErrorContext ctx = {0U, 0U};
- const SerdWriterFlags style = (SerdWriterFlags)SERD_WRITE_STRICT;
+ SerdWorld* const world = serd_world_new();
+ ErrorContext ctx = {0U, 0U};
const size_t max_offsets[] = {0, 386, 1911, 2003, 386};
@@ -385,7 +384,7 @@ test_write_errors(void)
SerdEnv* const env = serd_env_new(serd_empty_string());
SerdWriter* const writer =
- serd_writer_new(world, syntax, style, env, faulty_sink, &ctx);
+ serd_writer_new(world, syntax, 0U, env, faulty_sink, &ctx);
const SerdSink* const sink = serd_writer_sink(writer);
SerdReader* const reader = serd_reader_new(world, SERD_TRIG, sink, 4096U);
@@ -413,8 +412,8 @@ test_writer(const char* const path)
SerdWorld* world = serd_world_new();
- SerdWriter* writer =
- serd_writer_new(world, SERD_TURTLE, 0, env, (SerdWriteFunc)fwrite, fd);
+ SerdWriter* writer = serd_writer_new(
+ world, SERD_TURTLE, SERD_WRITE_LAX, env, (SerdWriteFunc)fwrite, fd);
assert(writer);
serd_writer_chop_blank_prefix(writer, "tmp");
diff --git a/test/test_writer.c b/test/test_writer.c
index e56dd789..9b885dd6 100644
--- a/test/test_writer.c
+++ b/test/test_writer.c
@@ -177,10 +177,10 @@ test_strict_write(void)
FILE* const fd = fopen(path, "wb");
assert(fd);
- SerdWorld* world = serd_world_new();
- SerdEnv* const env = serd_env_new(serd_empty_string());
- SerdWriter* const writer = serd_writer_new(
- world, SERD_TURTLE, (SerdWriterFlags)SERD_WRITE_STRICT, env, null_sink, fd);
+ SerdWorld* world = serd_world_new();
+ SerdEnv* const env = serd_env_new(serd_empty_string());
+ SerdWriter* const writer =
+ serd_writer_new(world, SERD_TURTLE, 0U, env, null_sink, fd);
assert(writer);