diff options
author | David Robillard <d@drobilla.net> | 2022-12-10 12:56:44 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-12-11 13:09:54 -0500 |
commit | 2eca3218ca1ac8fa582f86ab5f055474ad369d7d (patch) | |
tree | dc0df0310875b147ff87bd32d33e28b36d86c310 /test | |
parent | 270a81d5cb27c363c9ee2b78bcb7d14565d121d0 (diff) | |
download | sratom-2eca3218ca1ac8fa582f86ab5f055474ad369d7d.tar.gz sratom-2eca3218ca1ac8fa582f86ab5f055474ad369d7d.tar.bz2 sratom-2eca3218ca1ac8fa582f86ab5f055474ad369d7d.zip |
Fix "suspicious" string comparisons
Diffstat (limited to 'test')
-rw-r--r-- | test/.clang-tidy | 1 | ||||
-rw-r--r-- | test/test_sratom.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/test/.clang-tidy b/test/.clang-tidy index e4b41e4..d335ce8 100644 --- a/test/.clang-tidy +++ b/test/.clang-tidy @@ -3,7 +3,6 @@ Checks: > -*-magic-numbers, - -bugprone-suspicious-string-compare, -cert-err33-c, -readability-identifier-length, InheritParentConfig: true diff --git a/test/test_sratom.c b/test/test_sratom.c index 246b5c5..3fa2db6 100644 --- a/test/test_sratom.c +++ b/test/test_sratom.c @@ -362,7 +362,7 @@ test(SerdEnv* env, bool top_level, bool pretty_numbers) LV2_ATOM_BODY(parsed)); printf("# Turtle => Atom\n\n%s", instr); - if (strcmp(outstr, instr)) { + if (!!strcmp(outstr, instr)) { return test_fail("Re-serialized string differs from original\n"); } free(instr); |