j-toml version b843be0
FAIL invalid/control/comment-cr
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12575):
       comment-cr   = "Carriage return in comment" # 
a=1

     output from parser-cmd (PID 12575) (stdout):
       {
         "comment-cr": {"type": "string", "value": "Carriage return in comment"}
       }

     want:
       Exit code 1

FAIL invalid/control/comment-del
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12581):
       comment-del  = "0x7f"   # 

     output from parser-cmd (PID 12581) (stdout):
       {
         "comment-del": {"type": "string", "value": "0x7f"}
       }

     want:
       Exit code 1

FAIL invalid/control/comment-ff
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12596):
       comment-ff   = "0x7f"   # 

     output from parser-cmd (PID 12596) (stdout):
       {
         "comment-ff": {"type": "string", "value": "0x7f"}
       }

     want:
       Exit code 1

FAIL invalid/control/comment-lf
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12597):
       comment-lf   = "ctrl-P" # 

     output from parser-cmd (PID 12597) (stdout):
       {
         "comment-lf": {"type": "string", "value": "ctrl-P"}
       }

     want:
       Exit code 1

FAIL invalid/control/comment-null
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12609):
       comment-null = "null"   # 

     output from parser-cmd (PID 12609) (stdout):
       {
         "comment-null": {"type": "string", "value": "null"}
       }

     want:
       Exit code 1

FAIL invalid/control/comment-us
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 12617):
       comment-us   = "ctrl-_" # 

     output from parser-cmd (PID 12617) (stdout):
       {
         "comment-us": {"type": "string", "value": "ctrl-_"}
       }

     want:
       Exit code 1

FAIL invalid/encoding/bad-codepoint
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13043):
       # Invalid codepoint U+D800 : í €

     output from parser-cmd (PID 13043) (stdout):
       {}

     want:
       Exit code 1

FAIL invalid/encoding/bad-utf8-in-comment
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13052):
       # Ã

     output from parser-cmd (PID 13052) (stdout):
       {}

     want:
       Exit code 1

FAIL invalid/encoding/bad-utf8-in-multiline
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13078):
       # The following line contains an invalid UTF-8 sequence.
       bad = """Ã"""

     output from parser-cmd (PID 13078) (stdout):
       {
         "bad": {"type": "string", "value": "�"}
       }

     want:
       Exit code 1

FAIL invalid/encoding/bad-utf8-in-multiline-literal
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13065):
       # The following line contains an invalid UTF-8 sequence.
       bad = '''Ã'''

     output from parser-cmd (PID 13065) (stdout):
       {
         "bad": {"type": "string", "value": "�"}
       }

     want:
       Exit code 1

FAIL invalid/encoding/bad-utf8-in-string
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13088):
       # The following line contains an invalid UTF-8 sequence.
       bad = "Ã"

     output from parser-cmd (PID 13088) (stdout):
       {
         "bad": {"type": "string", "value": "�"}
       }

     want:
       Exit code 1

FAIL invalid/encoding/bad-utf8-in-string-literal
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13080):
       # The following line contains an invalid UTF-8 sequence.
       bad = 'Ã'

     output from parser-cmd (PID 13080) (stdout):
       {
         "bad": {"type": "string", "value": "�"}
       }

     want:
       Exit code 1

FAIL invalid/inline-table/no-comma-01
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13694):
       t = {x = 3 y = 4}

     output from parser-cmd (PID 13694) (stdout):
       {
         "t": {
           "x": {"type": "integer", "value": "3"},
           "y": {"type": "integer", "value": "4"}
         }
       }

     want:
       Exit code 1

FAIL invalid/inline-table/no-comma-02
     Expected an error, but no error was reported.

     input sent to parser-cmd (PID 13701):
       arrr = { comma-missing = true valid-toml = false }

     output from parser-cmd (PID 13701) (stdout):
       {
         "arrr": {
           "comma-missing": {"type": "bool", "value": "true"},
           "valid-toml":    {"type": "bool", "value": "false"}
         }
       }

     want:
       Exit code 1

toml-test v2025-04-23 [./js-toml-j-decode]: using embedded tests
  valid tests: 205 passed,  0 failed
invalid tests: 515 passed, 14 failed

==> ENCODER TESTS
toml-test v2025-04-23 [./js-toml-j-encode]: using embedded tests
encoder tests: 205 passed,  0 failed
took 7.1 0.54