diff options
Diffstat (limited to 'test/bad-config-json')
-rw-r--r-- | test/bad-config-json/formats/invalid-json/format.json | 5 | ||||
-rw-r--r-- | test/bad-config-json/formats/invalid-key/format.json | 27 |
2 files changed, 32 insertions, 0 deletions
diff --git a/test/bad-config-json/formats/invalid-json/format.json b/test/bad-config-json/formats/invalid-json/format.json new file mode 100644 index 0000000..47369a5 --- /dev/null +++ b/test/bad-config-json/formats/invalid-json/format.json @@ -0,0 +1,5 @@ +{ + "foobar_log": { + "abc" + } +} diff --git a/test/bad-config-json/formats/invalid-key/format.json b/test/bad-config-json/formats/invalid-key/format.json new file mode 100644 index 0000000..11a3bdd --- /dev/null +++ b/test/bad-config-json/formats/invalid-key/format.json @@ -0,0 +1,27 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "invalid_key_log": { + "level-pointer": "abc(", + "file-pattern": "def[ghi", + "json": true, + "regex": { + "foo": { + "pattern": "jkl" + } + }, + "value": { + "test": { + "identifiers": true + }, + "body": { + "kind": "string" + } + }, + "line-format": [ + { + "field": "non-existent" + } + ], + "timestamp-divisor": -1.2 + } +}
\ No newline at end of file |