Multi-Precision Expressions

Check-in [d1a74c6d07]
Login

Check-in [d1a74c6d07]

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

Overview
Comment:Added all.tcl so nmake test works
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | vc-reform
Files: files | file ages | folders
SHA3-256: d1a74c6d07513645f82997f8d192b68903ddbe63309c281869fd91578e7cc496
User & Date: apnadkarni 2017-12-23 06:42:08.545
Context
2017-12-23
09:47
Cleaned up some messages Closed-Leaf check-in: e189963951 user: apnadkarni tags: vc-reform
06:42
Added all.tcl so nmake test works check-in: d1a74c6d07 user: apnadkarni tags: vc-reform
06:01
Removed obsolete files and updated readme check-in: 2db4f53899 user: apnadkarni tags: vc-reform
Changes
Side-by-Side Diff Ignore Whitespace Patch
Added tests/all.tcl.














1
2
3
4
5
6
7
8
9
10
11
12
13
14
+
+
+
+
+
+
+
+
+
+
+
+
+
+
# NOTE: mpexpr tests do not use the tcltest framework.
# This file exists just so nmake test works.

# Run tests in separate interpreters since they check if mpexpr is
# statically linked or dynamically loaded.

set ip [interp create]
$ip eval {source mpexpr.test}
interp delete $ip

set ip [interp create]
$ip eval {source mpformat.test}
interp delete $ip

Changes to tests/mpformat.test.
14
15
16
17
18
19
20
21
22


23
24
25
26
27
28
29
14
15
16
17
18
19
20


21
22
23
24
25
26
27
28
29







-
-
+
+







#
# See the file "mpexpr.c" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.


# check if mpexpr is already loaded:

if {[info commands mpexpr] == "mpexpr"} {
  puts "mpexpr statically compiled into [info nameofexecutable]"
if {[info commands mpformat] == "mpformat"} {
  puts "mpformat statically compiled into [info nameofexecutable]"
} elseif {![catch {package require Mpexpr} version]} {
  puts "Mpexpr $version loaded via package require"
} else {
  set extdll  ""
  global tcl_platform
  if {[llength $argv]>0} {
     set dllpat [lindex $argv 0]