]> git.proxmox.com Git - qemu.git/blobdiff - check-qjson.c
Fix qjson test of solidus encoding
[qemu.git] / check-qjson.c
index 64fcdcb4ad0ac5c113d8ddd343375b0c46bf20ce..36d4ac26b4c7c9c7c02b85c99cfd37d74e65cf0a 100644 (file)
@@ -33,7 +33,8 @@ START_TEST(escaped_string)
         { "\"\\n\"", "\n" },
         { "\"\\r\"", "\r" },
         { "\"\\t\"", "\t" },
-        { "\"\\/\"", "\\/" },
+        { "\"/\"", "/" },
+        { "\"\\/\"", "/", .skip = 1 },
         { "\"\\\\\"", "\\" },
         { "\"\\\"\"", "\"" },
         { "\"hello world \\\"embedded string\\\"\"",