summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley>2003-10-31 13:33:36 (GMT)
committervincentdarley <vincentdarley>2003-10-31 13:33:36 (GMT)
commit1c422c27c0056e5bcbaa9aa8778554fd83675239 (patch)
treef61760f85941935c028f545130c95a6ae831110a /generic/tclTest.c
parent594ea92437e8a4065f0553a01de137852074177d (diff)
downloadtcl-1c422c27c0056e5bcbaa9aa8778554fd83675239.zip
tcl-1c422c27c0056e5bcbaa9aa8778554fd83675239.tar.gz
tcl-1c422c27c0056e5bcbaa9aa8778554fd83675239.tar.bz2
fix testsuite backport error
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index 4ce051d..3a23941 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.62.2.3 2003/10/22 22:35:46 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.62.2.4 2003/10/31 13:33:40 vincentdarley Exp $
*/
#define TCL_TEST
@@ -4014,7 +4014,7 @@ TestfileCmd(dummy, interp, argc, argv)
}
for (j = i; j < argc; j++) {
- if (Tcl_FSGetTranslatedPath(interp, argv[j]) == NULL) {
+ if (Tcl_FSGetNormalizedPath(interp, argv[j]) == NULL) {
return TCL_ERROR;
}
}