summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2019-04-17 16:32:53 (GMT)
committerdgp <dgp@users.sourceforge.net>2019-04-17 16:32:53 (GMT)
commitd227a324cdc79a735085101a912633df0541c4b9 (patch)
tree5cf370c042fd1d7b851f82eefbb69bb12cfeda73
parent12486f233fe3dee8ac48f4ec6c7c2bb1ea798c88 (diff)
downloadtcl-d227a324cdc79a735085101a912633df0541c4b9.zip
tcl-d227a324cdc79a735085101a912633df0541c4b9.tar.gz
tcl-d227a324cdc79a735085101a912633df0541c4b9.tar.bz2
Duplicate test names.
-rw-r--r--tests/oo.test4
-rw-r--r--tests/string.test42
-rw-r--r--tests/utf.test6
3 files changed, 26 insertions, 26 deletions
diff --git a/tests/oo.test b/tests/oo.test
index b0c5570..c8f4b21 100644
--- a/tests/oo.test
+++ b/tests/oo.test
@@ -2549,7 +2549,7 @@ test oo-16.17 {OO: object introspection: creationid #500} -body {
test oo-16.18 {OO: object introspection: creationid #500} -body {
info object creationid
} -returnCodes error -result {wrong # args: should be "info object creationid objName"}
-test oo-16.18 {OO: object introspection: creationid #500} -body {
+test oo-16.18.1 {OO: object introspection: creationid #500} -body {
info object creationid oo::object gorp
} -returnCodes error -result {wrong # args: should be "info object creationid objName"}
test oo-16.19 {OO: object introspection: creationid #500} -setup {
@@ -4095,7 +4095,7 @@ test oo-32.6 {TIP 516: slots - class test} -setup [SampleSlotSetup {
} -cleanup [SampleSlotCleanup {
rename sampleSlot {}
}] -result {0 {} {g h i a b c} {1 Resolve g 1 Resolve h 1 Resolve i 1 Get 1 Set {g h i a b c}}}
-test oo-32.6 {TIP 516: slots - class test} -setup [SampleSlotSetup {
+test oo-32.7 {TIP 516: slots - class test} -setup [SampleSlotSetup {
SampleSlot create sampleSlot
}] -body {
list [info level] [sampleSlot -remove c a] \
diff --git a/tests/string.test b/tests/string.test
index e937ab4..f077164 100644
--- a/tests/string.test
+++ b/tests/string.test
@@ -2415,75 +2415,75 @@ test string-31.25.$noComp {string insert, neither byte array nor Unicode} {
run {tcl::string::insert [makeList a b c] 1 zzzzzz}
} {azzzzzz b c}
-test string-31.1.$noComp {string is dict} {
+test string-32.1.$noComp {string is dict} {
string is dict {a b c d}
} 1
-test string-31.1a.$noComp {string is dict} {
+test string-32.1a.$noComp {string is dict} {
string is dict {a b c}
} 0
-test string-31.2.$noComp {string is dict} {
+test string-32.2.$noComp {string is dict} {
string is dict "a \{b c"
} 0
-test string-31.3.$noComp {string is dict} {
+test string-32.3.$noComp {string is dict} {
string is dict {a {b c}d e}
} 0
-test string-31.4.$noComp {string is dict} {
+test string-32.4.$noComp {string is dict} {
string is dict {}
} 1
-test string-31.5.$noComp {string is dict} {
+test string-32.5.$noComp {string is dict} {
string is dict -strict {a b c d}
} 1
-test string-31.5a.$noComp {string is dict} {
+test string-32.5a.$noComp {string is dict} {
string is dict -strict {a b c}
} 0
-test string-31.6.$noComp {string is dict} {
+test string-32.6.$noComp {string is dict} {
string is dict -strict "a \{b c"
} 0
-test string-31.7.$noComp {string is dict} {
+test string-32.7.$noComp {string is dict} {
string is dict -strict {a {b c}d e}
} 0
-test string-31.8.$noComp {string is dict} {
+test string-32.8.$noComp {string is dict} {
string is dict -strict {}
} 1
-test string-31.9.$noComp {string is dict} {
+test string-32.9.$noComp {string is dict} {
set x {}
list [string is dict -failindex x {a b c d}] $x
} {1 {}}
-test string-31.9a.$noComp {string is dict} {
+test string-32.9a.$noComp {string is dict} {
set x {}
list [string is dict -failindex x {a b c}] $x
} {0 -1}
-test string-31.10.$noComp {string is dict} {
+test string-32.10.$noComp {string is dict} {
set x {}
list [string is dict -failindex x "a \{b c d"] $x
} {0 2}
-test string-31.10a.$noComp {string is dict} {
+test string-32.10a.$noComp {string is dict} {
set x {}
list [string is dict -failindex x "a \{b c"] $x
} {0 2}
-test string-31.11.$noComp {string is dict} {
+test string-32.11.$noComp {string is dict} {
set x {}
list [string is dict -failindex x {a b {b c}d e}] $x
} {0 4}
-test string-31.12.$noComp {string is dict} {
+test string-32.12.$noComp {string is dict} {
set x {}
list [string is dict -failindex x {}] $x
} {1 {}}
-test string-31.13.$noComp {string is dict} {
+test string-32.13.$noComp {string is dict} {
set x {}
list [string is dict -failindex x { {b c}d e}] $x
} {0 2}
-test string-31.14.$noComp {string is dict} {
+test string-32.14.$noComp {string is dict} {
set x {}
list [string is dict -failindex x "\uabcd {b c}d e"] $x
} {0 2}
-test string-31.15.$noComp {string is dict, valid dict} {
+test string-32.15.$noComp {string is dict, valid dict} {
string is dict {a b c d e f}
} 1
-test string-31.16.$noComp {string is dict, invalid dict} {
+test string-32.16.$noComp {string is dict, invalid dict} {
string is dict a
} 0
-test string-31.17.$noComp {string is dict, valid dict packed in invalid dict} {
+test string-32.17.$noComp {string is dict, valid dict packed in invalid dict} {
string is dict {{a b c d e f g h}}
} 0
diff --git a/tests/utf.test b/tests/utf.test
index 72b8d97..dc1a435 100644
--- a/tests/utf.test
+++ b/tests/utf.test
@@ -161,7 +161,7 @@ test utf-8.4 {Tcl_UniCharAtIndex: index > 0} {
test utf-8.5 {Tcl_UniCharAtIndex: high surrogate} {
string index \ud842 0
} "\ud842"
-test utf-8.5 {Tcl_UniCharAtIndex: low surrogate} {
+test utf-8.6 {Tcl_UniCharAtIndex: low surrogate} {
string index \udc42 0
} "\udc42"
@@ -192,7 +192,7 @@ test utf-10.5 {Tcl_UtfBackslash: stops after 4 hex chars} testbytestring {
test utf-10.6 {Tcl_UtfBackslash: stops after 5 hex chars} testbytestring {
expr {"\U1e2165" eq "[testbytestring \xf0\x9e\x88\x96]5"}
} 1
-test utf-10.6 {Tcl_UtfBackslash: stops after 6 hex chars} testbytestring {
+test utf-10.7 {Tcl_UtfBackslash: stops after 6 hex chars} testbytestring {
expr {"\U10e2165" eq "[testbytestring \xf4\x8e\x88\x96]5"}
} 1
proc bsCheck {char num} {
@@ -203,7 +203,7 @@ proc bsCheck {char num} {
} $num
incr errNum
}
-set errNum 6
+set errNum 8
bsCheck \b 8
bsCheck \e 101
bsCheck \f 12