diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-01-04T14·22+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-01-04T14·22+0000 |
commit | 7d0f6aed59b11ef1037e7b0ee4dae1c7288ebb45 (patch) | |
tree | 7b158d1eafd04f0d08426a9919beb635c48124d6 /tests | |
parent | 895c9538173a1c1d7e5f6c82e5b7a58b7d904683 (diff) |
* New primop `unsafeDiscardStringContext' to get rid of string
contexts. Needed to prevent unnecessary dependencies when building the NixOS manual.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lang/eval-okay-context.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-context.nix | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-context.exp b/tests/lang/eval-okay-context.exp new file mode 100644 index 000000000000..95a993654263 --- /dev/null +++ b/tests/lang/eval-okay-context.exp @@ -0,0 +1 @@ +Str("foo eval-okay-context.nix bar",[]) diff --git a/tests/lang/eval-okay-context.nix b/tests/lang/eval-okay-context.nix new file mode 100644 index 000000000000..b3f1748975f7 --- /dev/null +++ b/tests/lang/eval-okay-context.nix @@ -0,0 +1,6 @@ +let s = "foo ${builtins.substring 33 100 (baseNameOf ./eval-okay-context.nix)} bar"; +in + if s == "foo eval-okay-context.nix bar" + then abort "context not discarded" + else builtins.unsafeDiscardStringContext s + |