summaryrefslogtreecommitdiffstats
path: root/tests/info.test
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2007-05-18 18:39:29 (GMT)
committerdgp <dgp@users.sourceforge.net>2007-05-18 18:39:29 (GMT)
commit9190f533c5cb5bf91aa76adf0fb9cfcc90775c07 (patch)
tree4e15601582fe82e692cfbe52544661ca2ea65098 /tests/info.test
parent236ba37a303671d6a3c75177016c755bf1003c3c (diff)
downloadtcl-9190f533c5cb5bf91aa76adf0fb9cfcc90775c07.zip
tcl-9190f533c5cb5bf91aa76adf0fb9cfcc90775c07.tar.gz
tcl-9190f533c5cb5bf91aa76adf0fb9cfcc90775c07.tar.bz2
* unix/configure: autoconf-2.59 (FC6 fork)
* win/configure: * README: Bump version number to 8.5a7 * generic/tcl.h: * library/init.tcl: * tools/tcl.wse.in: * unix/configure.in: * unix/tcl.spec: * win/configure.in: * generic/tclParse.c: Disable and remove the ALLOW_EXPAND sections * tests/info.test: that continued to support the deprecated * tests/mathop.test: {expand} syntax. Updated the few remaining users of that syntax in the test suite.
Diffstat (limited to 'tests/info.test')
-rw-r--r--tests/info.test34
1 files changed, 17 insertions, 17 deletions
diff --git a/tests/info.test b/tests/info.test
index dbca511..527d217 100644
--- a/tests/info.test
+++ b/tests/info.test
@@ -13,7 +13,7 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: info.test,v 1.43 2006/12/17 03:43:40 das Exp $
+# RCS: @(#) $Id: info.test,v 1.44 2007/05/18 18:39:31 dgp Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest 2
@@ -1066,12 +1066,12 @@ namespace delete foo
# -------------------------------------------------------------------------
-namespace {expand}{
+namespace {*}{
eval
foo
{proc bar {} {info frame 0}}
}
-test info-33.0 {expand, literal, direct} {
+test info-33.0 {{*}, literal, direct} {
reduce [foo::bar]
} {type source line 1072 file info.test cmd {info frame 0} proc ::foo::bar level 0}
@@ -1082,12 +1082,12 @@ namespace delete foo
namespace eval foo {}
proc foo::bar {} {
set flag 1
- if {expand}{
+ if {*}{
{$flag}
{info frame 0}
}
}
-test info-33.1 {expand, literal, simple, bytecompiled} {
+test info-33.1 {{*}, literal, simple, bytecompiled} {
reduce [foo::bar]
} {type source line 1087 file info.test cmd {info frame 0} proc ::foo::bar level 0}
@@ -1102,8 +1102,8 @@ set body {
info frame 0
}}
}
-namespace {expand}$body
-test info-34.0 {expand, dynamic, direct} {
+namespace {*}$body
+test info-34.0 {{*}, dynamic, direct} {
reduce [foo::bar]
} {type proc line 2 cmd {info frame 0} proc ::foo::bar level 0}
@@ -1119,9 +1119,9 @@ set body {
}
proc foo::bar {} {
global body ; set flag 1
- if {expand}$body
+ if {*}$body
}
-test info-34.1 {expand, literal, bytecompiled} {
+test info-34.1 {{*}, literal, bytecompiled} {
reduce [foo::bar]
} {type eval line 1 cmd {info frame 0} proc ::foo::bar level 0}
@@ -1248,12 +1248,12 @@ namespace delete foo
# -------------------------------------------------------------------------
-namespace {expand}"
+namespace {*}"
eval
foo
{proc bar {} {info frame 0}}
"
-test info-33.2 {expand, literal, direct} {
+test info-33.2 {{*}, literal, direct} {
reduce [foo::bar]
} {type source line 1254 file info.test cmd {info frame 0} proc ::foo::bar level 0}
@@ -1261,9 +1261,9 @@ namespace delete foo
# -------------------------------------------------------------------------
-namespace {expand}"eval\nfoo\n{proc bar {} {info frame 0}}\n"
+namespace {*}"eval\nfoo\n{proc bar {} {info frame 0}}\n"
-test info-33.2a {expand, literal, not simple, direct} {
+test info-33.2a {{*}, literal, not simple, direct} {
reduce [foo::bar]
} {type proc line 1 cmd {info frame 0} proc ::foo::bar level 0}
@@ -1274,12 +1274,12 @@ namespace delete foo
namespace eval foo {}
proc foo::bar {} {
set flag 1
- if {expand}"
+ if {*}"
{1}
{info frame 0}
"
}
-test info-33.3 {expand, literal, simple, bytecompiled} {
+test info-33.3 {{*}, literal, simple, bytecompiled} {
reduce [foo::bar]
} {type source line 1279 file info.test cmd {info frame 0} proc ::foo::bar level 0}
@@ -1290,9 +1290,9 @@ namespace delete foo
namespace eval foo {}
proc foo::bar {} {
set flag 1
- if {expand}"\n{1}\n{info frame 0}"
+ if {*}"\n{1}\n{info frame 0}"
}
-test info-33.3a {expand, literal, not simple, bytecompiled} {
+test info-33.3a {{*}, literal, not simple, bytecompiled} {
reduce [foo::bar]
} {type eval line 1 cmd {info frame 0} proc ::foo::bar level 0}