summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-11 10:05:55 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-11 10:05:55 (GMT)
commit6d173aa6be98d083b288206ad2c036bc37799c89 (patch)
tree9345a2f89657cf2a8c29be397c9cfb930f7f8fe3 /tests
parent0d3be39618038448f3387fb51a63b0e29070d0a1 (diff)
downloadtk-6d173aa6be98d083b288206ad2c036bc37799c89.zip
tk-6d173aa6be98d083b288206ad2c036bc37799c89.tar.gz
tk-6d173aa6be98d083b288206ad2c036bc37799c89.tar.bz2
Fix [0aa5e852dc]: Accept newline characters as value in Tk option files
Diffstat (limited to 'tests')
-rw-r--r--tests/option.file11
-rw-r--r--tests/option.test7
2 files changed, 5 insertions, 3 deletions
diff --git a/tests/option.file1 b/tests/option.file1
index e64b6cc..32b4a18 100644
--- a/tests/option.file1
+++ b/tests/option.file1
@@ -14,4 +14,5 @@ ple
# More comments, this time delimited by hash-marks.
# Comment-line with space.
*x6:
+*x9: \ \ \\\101\n
# comment line as last line of file.
diff --git a/tests/option.test b/tests/option.test
index 49d2975..1bfcb7c 100644
--- a/tests/option.test
+++ b/tests/option.test
@@ -197,13 +197,14 @@ test option-15.3 {database files} appNameIsTktest {option get . x2 color} green
test option-15.4 {database files} {option get . x3 color} purple
test option-15.5 {database files} {option get . {x 4} color} brown
test option-15.6 {database files} {option get . x6 color} {}
-test option-15.7 {database files} {
+test option-15.7 {database files} {option get . x9 color} " \t\\A\n"
+test option-15.8 {database files} {
list [catch {option read $option1 widget foo} msg] $msg
} {1 {wrong # args: should be "option readfile fileName ?priority?"}}
option add *x3 burgundy
catch {option read $option1 userDefault}
-test option-15.8 {database files} {option get . x3 color} burgundy
-test option-15.9 {database files} {
+test option-15.9 {database files} {option get . x3 color} burgundy
+test option-15.10 {database files} {
list [catch {option read $option2} msg] $msg
} {1 {missing colon on line 2}}