-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests/lang/eval-fail-bad-string-interpolation-4: init
- Loading branch information
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
tests/functional/lang/eval-fail-bad-string-interpolation-4.err.exp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
error: | ||
… while evaluating a path segment | ||
|
||
at /pwd/lang/eval-fail-bad-string-interpolation-4.nix:9:3: | ||
|
||
8| # The error message should not be too long. | ||
9| ''${pkgs}'' | ||
| ^ | ||
10| | ||
|
||
error: cannot coerce a set to a string |
9 changes: 9 additions & 0 deletions
9
tests/functional/lang/eval-fail-bad-string-interpolation-4.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
let | ||
# Basically a "billion laughs" attack, but toned down to simulated `pkgs`. | ||
ha = x: y: { a = x y; b = x y; c = x y; d = x y; e = x y; f = x y; g = x y; h = x y; j = x y; }; | ||
has = ha (ha (ha (ha (x: x)))) "ha"; | ||
# A large structure that has already been evaluated. | ||
pkgs = builtins.deepSeq has has; | ||
in | ||
# The error message should not be too long. | ||
''${pkgs}'' |