summaryrefslogtreecommitdiff
path: root/db/dist/s_test
diff options
context:
space:
mode:
Diffstat (limited to 'db/dist/s_test')
-rwxr-xr-xdb/dist/s_test22
1 files changed, 19 insertions, 3 deletions
diff --git a/db/dist/s_test b/db/dist/s_test
index df0648d56..543d95b9f 100755
--- a/db/dist/s_test
+++ b/db/dist/s_test
@@ -1,5 +1,5 @@
#!/bin/sh -
-# $Id: s_test,v 1.29 2004/05/13 18:51:43 mjc Exp $
+# $Id: s_test,v 12.5 2006/07/07 19:05:59 bostic Exp $
#
# Build the Tcl test files.
@@ -30,11 +30,19 @@ trap 'rm -f $t; exit 0' 0 1 2 3 13 15
echo "global dict" && \
echo "global util_path" && \
echo "" && \
+ echo "global is_freebsd_test" && \
echo "global is_hp_test" && \
+ echo "global is_linux_test" && \
echo "global is_qnx_test" && \
+ echo "global is_sunos_test" && \
echo "global is_windows_test" && \
+ echo "global is_windows9x_test" && \
echo "" && \
- echo "set KILL \"@db_cv_path_kill@\"") > $t
+ echo "global valid_methods" && \
+ echo "global checking_valid_methods" && \
+ echo "global test_recopts" && \
+ echo "" && \
+ echo "set KILL \"@KILL@\"") > $t
f=../test/include.tcl
cmp $t $f > /dev/null 2>&1 ||
@@ -55,13 +63,21 @@ cmp $t $f > /dev/null 2>&1 ||
echo "global dict" && \
echo "global util_path" && \
echo "" && \
+ echo "global is_freebsd_test" && \
echo "global is_hp_test" && \
+ echo "global is_linux_test" && \
echo "global is_qnx_test" && \
+ echo "global is_sunos_test" && \
echo "global is_windows_test" && \
+ echo "global is_windows9x_test" && \
+ echo "" && \
+ echo "global valid_methods" && \
+ echo "global checking_valid_methods" && \
+ echo "global test_recopts" && \
echo "" && \
echo "set KILL ./dbkill.exe") > $t
-f=../build_win32/include.tcl
+f=../build_windows/include.tcl
cmp $t $f > /dev/null 2>&1 ||
(echo "Building $f" && rm -f $f && cp $t $f && chmod 444 $f)