lix/tests/functional/repl_characterization/data
Rebecca Turner 9e7e927837 Print top-level errors normally in nix repl
Previously, errors while printing values in `nix repl` would be printed
in `«error: ...»` brackets rather than displayed normally:

```
nix-repl> legacyPackages.aarch64-darwin.pythonPackages.APScheduler
«error: Package ‘python-2.7.18.7’ in /nix/store/6s0m1qc31zw3l3kq0q4wd5cp3lqpkq0q-source/pkgs/development/interpreters/python/cpython/2.7/default.nix:335 is marked as insecure, refusing to evaluate.»
```

Now, errors will be displayed normally if they're emitted at the
top-level of an expression:

```
nix-repl> legacyPackages.aarch64-darwin.pythonPackages.APScheduler
error:
       … in the condition of the assert statement
         at /nix/store/6s0m1qc31zw3l3kq0q4wd5cp3lqpkq0q-source/lib/customisation.nix:268:17:
          267|     in commonAttrs // {
          268|       drvPath = assert condition; drv.drvPath;
             |                 ^
          269|       outPath = assert condition; drv.outPath;

       … in the left operand of the OR (||) operator
         at /nix/store/6s0m1qc31zw3l3kq0q4wd5cp3lqpkq0q-source/pkgs/development/interpreters/python/passthrufun.nix:28:45:
           27|         if lib.isDerivation value then
           28|           lib.extendDerivation (valid value || throw "${name} should use `buildPythonPackage` or `toPythonModule` if it is to be part of the Python packages set.") {} value
             |                                             ^
           29|         else

       (stack trace truncated; use '--show-trace' to show the full trace)

       error: Package ‘python-2.7.18.7’ in /nix/store/6s0m1qc31zw3l3kq0q4wd5cp3lqpkq0q-source/pkgs/development/interpreters/python/cpython/2.7/default.nix:335 is marked as insecure, refusing to evaluate.
```

Errors emitted in nested structures (like e.g. when printing `nixpkgs`)
will still be printed in brackets.

Change-Id: I25aeddf08c017582718cb9772a677bf51b9fc2ad
2024-04-09 08:34:40 -07:00
..
extra_data Add repl-overlays 2024-04-08 17:11:47 -07:00
basic.ast Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
basic.test Add pre-commit checks 2024-03-29 22:57:40 -07:00
basic_repl.test Implement a repl characterization test system 2024-03-15 12:31:16 -07:00
basic_tidied.ast Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
basic_tidied.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
errors.test Print top-level errors normally in nix repl 2024-04-09 08:34:40 -07:00
no_nested_debuggers.nix Merge pull request #9920 from 9999years/forbid-nested-debuggers 2024-03-31 17:28:25 +00:00
no_nested_debuggers.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
regression_9917.nix Add regression tests for #9917, #9918 2024-03-15 12:31:16 -07:00
regression_9917.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
regression_9918.nix Add regression tests for #9917, #9918 2024-03-15 12:31:16 -07:00
regression_9918.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
regression_l145.nix libexpr: associate let exprs with the correct StaticEnv 2024-03-18 14:15:22 -07:00
regression_l145.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00
repl_overlays.nix Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays.test Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays_compose.nix Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays_compose.test Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays_destructure_without_dotdotdot_errors.test Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays_destructure_without_formals_ok.test Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_overlays_error.test Add repl-overlays 2024-04-08 17:11:47 -07:00
repl_printing.test Merge pull request #10208 from 9999years/print-strings-directly 2024-04-07 19:10:43 -07:00
stack_vars.nix Test that :st does ... something 2024-03-15 12:31:16 -07:00
stack_vars.test Rewrite REPL test parser 2024-04-05 13:14:21 -07:00