about summary refs log tree commit diff
path: root/tests/lang/parse-okay-crlf.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2006-08-16T10·23+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2006-08-16T10·23+0000
commitbfe19b3c3728d90cad7575c5d2571d48f0ef0d14 (patch)
tree243e2890e38c65889d3d7003e02a8bf72aeac36a /tests/lang/parse-okay-crlf.nix
parent3e5b68068bf5cfdc671a2900eeb0dc70fae49cf6 (diff)
* A test for NIX-53.
Diffstat (limited to 'tests/lang/parse-okay-crlf.nix')
-rw-r--r--tests/lang/parse-okay-crlf.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-crlf.nix b/tests/lang/parse-okay-crlf.nix
new file mode 100644
index 0000000000..ea6a0b2f89
--- /dev/null
+++ b/tests/lang/parse-okay-crlf.nix
@@ -0,0 +1,17 @@
+rec {
+
+  /* Dit is

+  een test. */
+
+  x = 
+  # Dit is een test.
y;
+  
+  y = 123;

+
+  # CR or CR/LF in strings should be translated to LF (but not
+  # explicit \r's).
+  foo = "multi
line

+  string
+  test\r";
+
+  z = 456;
}