1
1
mirror of https://github.com/wader/fq.git synced 2024-11-27 14:14:58 +03:00
fq/pkg/interp/testdata/exitcode.fqtest
Mattias Wadman c1a0cda5a8 gojq: Update rebased fq fork
Fix tostring for non-string JQValue:s, is now JSON
Update EOF error
2022-06-01 17:27:45 +02:00

27 lines
494 B
Plaintext

$ fq
exitcode: 2
stderr:
Usage: fq [OPTIONS] [--] [EXPR] [FILE...]
$ fq -n '1+"a"'
exitcode: 5
stderr:
error: cannot add: number (1) and string ("a")
$ fq -n '"abc" | halt_error(123)'
exitcode: 123
stderr:
error: abc
$ fq -n 'null | halt_error(123)'
exitcode: 123
$ fq -n invalid
exitcode: 3
stderr:
error: arg: function not defined: invalid/0
$ fq -n "("
exitcode: 3
stderr:
error: arg:1:1: unexpected EOF
$ fq . non-existing
exitcode: 2
stderr:
error: non-existing: no such file or directory