TDBC

Check-in [f250d67d31]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:tdbc works fine with Tcl 8.5 as well.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f250d67d3183c905ed620d5cca3f78446c2e09fe
User & Date: jan.nijtmans 2013-11-14 13:26:27.284
Context
2013-11-14
14:10
Make "package require tdbc" work in Tcl 8.5, when TclOO is not loaded yet. check-in: 51cadedf9c user: jan.nijtmans tags: trunk
13:29
merge trunk check-in: 63f6d88132 user: jan.nijtmans tags: novem-support
13:26
tdbc works fine with Tcl 8.5 as well. check-in: f250d67d31 user: jan.nijtmans tags: trunk
2013-10-30
15:58
Put extern "C" guard around stub table definition. See also same change in Itcl: http://core.tcl.tk/itcl/info/ddf387cd88 check-in: f34e92eb70 user: jan.nijtmans tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to tests/all.tcl.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# all.tcl --
#
# This file contains a top-level script to run all of the Tcl
# tests.  Execute it by invoking "source all.test" when running tcltest
# in this directory.
#
# Copyright (c) 1998-2000 by Scriptics Corporation.
# All rights reserved.
# 
# RCS: @(#) $Id$

package require Tcl 8.6
package require tcltest 2.2
::tcltest::configure \
    -testdir [file dirname [file normalize [info script]]] \
    {*}$argv
::tcltest::runAllTests











|





1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# all.tcl --
#
# This file contains a top-level script to run all of the Tcl
# tests.  Execute it by invoking "source all.test" when running tcltest
# in this directory.
#
# Copyright (c) 1998-2000 by Scriptics Corporation.
# All rights reserved.
# 
# RCS: @(#) $Id$

package require Tcl 8.5
package require tcltest 2.2
::tcltest::configure \
    -testdir [file dirname [file normalize [info script]]] \
    {*}$argv
::tcltest::runAllTests