Overview
Comment: | Updated to name nightly tests "fossil_trunk" instead of "cvs_HEAD" |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 75f558f8fa0bd39efe19581e7d676cdd7ec759ec |
User & Date: | rkeene on 2015-01-29 14:33:13 |
Other Links: | manifest | tags |
Context
2015-01-29
| ||
14:35 | KitCreator 0.9.2 check-in: 44247ef8ba user: rkeene tags: trunk, 0.9.2 | |
14:33 | Updated to name nightly tests "fossil_trunk" instead of "cvs_HEAD" check-in: 75f558f8fa user: rkeene tags: trunk | |
14:30 | Updated to set default Tcl version to latest check-in: 028aff64c2 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [5fea40c753] to [5e3684a6ac].
1 2 3 4 5 6 7 8 9 10 |
#! /bin/bash
VERSIONS="8.5.17 8.6.3 cvs_HEAD"
# Find the base directory
for x in 1 2 3 4 __fail__; do
if [ "${x}" = "__fail__" ]; then
echo 'Unable to find KitCreator, aborting.' >&2
exit 1
|
| |
1 2 3 4 5 6 7 8 9 10 |
#! /bin/bash
VERSIONS="8.5.17 8.6.3 fossil_trunk"
# Find the base directory
for x in 1 2 3 4 __fail__; do
if [ "${x}" = "__fail__" ]; then
echo 'Unable to find KitCreator, aborting.' >&2
exit 1
|
Modified build/test/tests/04-version.tcl from [d679aaf9ec] to [0fa9712117].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /usr/bin/env tclsh set chkversion [lindex $argv 2] # We are unable to make a reasonable determination of the version from a CVS # tag. Assume it's okay. if {[string match "cvs_*" $chkversion]} { exit 0 } if {[info patchlevel] == $chkversion} { exit 0 } exit 1 |
| |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#! /usr/bin/env tclsh
set chkversion [lindex $argv 2]
# We are unable to make a reasonable determination of the version from a CVS
# tag. Assume it's okay.
if {[string match "cvs_*" $chkversion] || [string match "fossil_*" $chkversion]} {
exit 0
}
if {[info patchlevel] == $chkversion} {
exit 0
}
exit 1
|