From bfe19b3c3728d90cad7575c5d2571d48f0ef0d14 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Aug 2006 10:23:02 +0000 Subject: [PATCH] * A test for NIX-53. --- tests/lang/parse-okay-crlf.exp | 1 + tests/lang/parse-okay-crlf.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 tests/lang/parse-okay-crlf.exp create mode 100644 tests/lang/parse-okay-crlf.nix diff --git a/tests/lang/parse-okay-crlf.exp b/tests/lang/parse-okay-crlf.exp new file mode 100644 index 0000000000..9db7c903c0 --- /dev/null +++ b/tests/lang/parse-okay-crlf.exp @@ -0,0 +1 @@ +Rec([Bind("x",Var("y"),Pos("(string)",6,4)),Bind("y",Int(123),Pos("(string)",10,4)),Bind("foo",Str("multi\nline\n string\n test\r"),Pos("(string)",14,6)),Bind("z",Int(456),Pos("(string)",19,4))],[]) 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; }