summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authorvincentdarley <vincentdarley@noemail.net>2003-10-31 13:33:35 (GMT)
committervincentdarley <vincentdarley@noemail.net>2003-10-31 13:33:35 (GMT)
commite7e139378267832fd2420ae50cf09677b41c4e8f (patch)
treef61760f85941935c028f545130c95a6ae831110a /generic/tclTest.c
parentecf12ec9bf4657009d6f95a0d1143868b8e729cd (diff)
downloadtcl-e7e139378267832fd2420ae50cf09677b41c4e8f.zip
tcl-e7e139378267832fd2420ae50cf09677b41c4e8f.tar.gz
tcl-e7e139378267832fd2420ae50cf09677b41c4e8f.tar.bz2
fix testsuite backport error
FossilOrigin-Name: 3cf3288b1bfd0bc37a0a27b7494f8213380d2ca1
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;
}
}