summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorcvs2fossil <cvs2fossil>1998-11-19 20:10:51 (GMT)
committercvs2fossil <cvs2fossil>1998-11-19 20:10:51 (GMT)
commit529cff8c7df4a2bc35d1e445a6e8f8006ff94166 (patch)
tree348e6371de2921713a4c2810bc53090dd5b6e452 /tests
parent2ca2b6fdac8c01b6b4157b9840d47781024e21f0 (diff)
downloadtcl-core_8_0_4_synthetic.zip
tcl-core_8_0_4_synthetic.tar.gz
tcl-core_8_0_4_synthetic.tar.bz2
Created branch core-8-0-4-syntheticcore_8_0_4core_8_0_4_synthetic
Diffstat (limited to 'tests')
-rw-r--r--tests/pkg/pkga.tcl15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/pkg/pkga.tcl b/tests/pkg/pkga.tcl
new file mode 100644
index 0000000..e964f51
--- /dev/null
+++ b/tests/pkg/pkga.tcl
@@ -0,0 +1,15 @@
+# pkga.tcl --
+#
+# Test package for pkg_mkIndex. This package provides Pkga,
+# which is also provided by a DLL.
+#
+# Copyright (c) 1998 by Scriptics Corporation.
+# All rights reserved.
+#
+# RCS: @(#) $Id: pkga.tcl,v 1.1 1998/12/04 06:28:11 welch Exp $
+
+package provide Pkga 1.0
+
+proc pkga_neq { x } {
+ return [expr {! [pkgq_eq $x]}]
+}