diff options
author | ericm <ericm> | 2000-07-19 21:40:56 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-07-19 21:40:56 (GMT) |
commit | 8c6040fe85cad9ab5bb5452596ea1107e155f450 (patch) | |
tree | 525bccdd3bb541d4c98690bbc66f162355f3b294 /tests/pkgMkIndex.test | |
parent | 274387600934d8c80f0ba1eef9beb3a246522c6c (diff) | |
download | tcl-8c6040fe85cad9ab5bb5452596ea1107e155f450.zip tcl-8c6040fe85cad9ab5bb5452596ea1107e155f450.tar.gz tcl-8c6040fe85cad9ab5bb5452596ea1107e155f450.tar.bz2 |
* tests/pkgMkIndex.test: Added tests for pkg_compareExtension.
* library/package.tcl: Enhanced pkg_compareExtension to handle
Unixes which tack the version number on to the end of library
names (eg, foo.so.1.2); such filenames will be correctly matched.
(Patch from Vince Darley).
Diffstat (limited to 'tests/pkgMkIndex.test')
-rw-r--r-- | tests/pkgMkIndex.test | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/pkgMkIndex.test b/tests/pkgMkIndex.test index 928d2e9..af0d5c6 100644 --- a/tests/pkgMkIndex.test +++ b/tests/pkgMkIndex.test @@ -8,7 +8,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: pkgMkIndex.test,v 1.16 2000/04/10 17:19:03 ericm Exp $ +# RCS: @(#) $Id: pkgMkIndex.test,v 1.17 2000/07/19 21:40:57 ericm Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -362,6 +362,26 @@ test pkgMkIndex-13.1 {proc names with embedded spaces} { pkgtest::runIndex -lazy $fullPkgPath spacename.tcl } {0 {{spacename:1.0 {tclPkgSetup {spacename.tcl source {{a b} {c d}}}}}}} +# Test the pkg_compareExtension helper function +test pkgMkIndex-14.1 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo.so .so +} 1 +test pkgMkIndex-14.2 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo.so.bar .so +} 0 +test pkgMkIndex-14.3 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo.so.1 .so +} 1 +test pkgMkIndex-14.4 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo.so.1.2 .so +} 1 +test pkgMkIndex-14.5 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo .so +} 0 +test pkgMkIndex-14.6 {pkg_compareExtension} {unixOnly} { + pkg_compareExtension foo.so.1.2.bar .so +} 0 + # cleanup namespace delete pkgtest |