Differences From Artifact [4ea2b1197d]:
- File library/msgcat/tests/load.test — part of check-in [d7de076618] at 2011-10-27 19:13:52 on branch dgp-pkg-migration — Attempt to use new symlink support in fossil to begin package migration. (user: dgp size: 8840)
- File pkgs/msgcat/tests/load.test — part of check-in [d505b7f4cd] at 2011-10-27 20:15:33 on branch dgp-pkg-migration — Work In Progress migrating msgcat package to tcl/pkgs/ distribution. Includes inventing configure/make tools/patterns for "pure Tcl" packages. (user: dgp size: 8840)
- File tests/load.test — part of check-in [c64f310d38] at 2011-03-02 20:27:33 on branch trunk — Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause more harm than good. Purged them (except in zlib files). (user: dgp size: 8840)
To Artifact [cc0a672464]:
- File tests/load.test — part of check-in [6b6ef4e0b1] at 2011-04-07 10:19:46 on branch trunk — Add some (temporary) test cases showing the problem with --export-dynamic (user: jan.nijtmans size: 9036) [more...]
| ︙ | |||
78 79 80 81 82 83 84 85 86 87 88 89 90 91 | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | + + + + |
list [catch {load [file join $testDir pkgc$ext] foo} msg] $msg $errorCode
} -match glob \
-result [list 1 {cannot find symbol "Foo_Init"*} \
{TCL LOOKUP LOAD_SYMBOL *Foo_Init}]
test load-2.4 {loading with no _SafeInit procedure} [list $dll $loaded] {
list [catch {load [file join $testDir pkga$ext] {} child} msg] $msg
} {1 {can't use package in a safe interpreter: no Pkga_SafeInit procedure}}
# This test fails due to --export-dynamic
test load-2.5 {loading package with symbol conflict, this test fails when using --export-dynamic} [list $dll $loaded] {
pkga_quote
} {I'm in pkga.c}
test load-3.1 {error in _Init procedure, same interpreter} \
[list $dll $loaded] {
list [catch {load [file join $testDir pkge$ext] pkge} msg] \
$msg $::errorInfo $::errorCode
} {1 {couldn't open "non_existent": no such file or directory} {couldn't open "non_existent": no such file or directory
while executing
|
| ︙ |