miller/test/cases/repl
John Kerl af1adf80ad
Replace GOCC parser-generator with PGPG (#2015)
* Porting

* Update some tests that depend on AST-print output

* iterating on GOCC -> PGPG

* iterating

* iterating

* iterating

* iterating

* iterating

* Modify expout files that need only AST-print-syntax updates

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* iterating

* sync test cases from mlr-6.17.0, except AST-prints ...

* sync test cases from mlr-6.17.0, except AST-prints ...

* Fix lashed emit for $* and @*

* Fix --1 and ++1 chained unary ops

* Emit with function callsite

* test cases

* dot operator

* M_PI and M_E

* Iterating on lashed emit cases

* error-wording differences

* rm some should-fail files

* Fix issue with leading semicolon

* trailing comma in func params; most AST-print deltas

* error-wording delta

* fix unset all

* AST-print deltas

* go mod tidy: forced `go 1.25` to `go 1.25.0`

* Depend on PGPG v1.0.0

* Fix Windows CI failure

* Remove cmd/experiments/dsl_parser

* GOCC -> PGPG

* neaten

* Fix regex issue found in doc gen
2026-03-15 22:28:57 -04:00
..
0001 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0002 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0003 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0004 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0005 Let mlr help take pre-flags, such as --always-color (#1292) 2023-05-15 01:14:59 -04:00
0006 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0007 Distinguish between JSON and JSON Lines formats (#844) 2022-01-09 11:11:54 -05:00
0008 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0009 Distinguish between JSON and JSON Lines formats (#844) 2022-01-09 11:11:54 -05:00
0010 Distinguish between JSON and JSON Lines formats (#844) 2022-01-09 11:11:54 -05:00
0011 Replace GOCC parser-generator with PGPG (#2015) 2026-03-15 22:28:57 -04:00
0012 Replace GOCC parser-generator with PGPG (#2015) 2026-03-15 22:28:57 -04:00
0013 Replace GOCC parser-generator with PGPG (#2015) 2026-03-15 22:28:57 -04:00
0014 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
0015 Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00
README.txt Standardize Go-package structure (#746) 2021-11-11 14:15:13 -05:00

The Miller REPL startup banner is only printed if the input is detected to be a
terminal -- i.e. yes for interactive use, no for scripted use (such as
regression tests).

However the "is a terminal" check is (as of April 2021 anyway) non-functional
on Windows so the startup banner is always printed.

This means that if you develop on Linux/MacOS any tests using `mlr repl` will
pass but will fail on Windows.

Be sure to use `mlr repl -q` so the Miller REPL startup banner will be
suppressed on all platforms.