Overview
| Comment: | Updated to support a large test build suite if requested Minor cleanup of test script | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 1ebadabb1d6790e6762205cb728f25c8 | 
| User & Date: | rkeene on 2011-08-06 16:10:54 | 
| Other Links: | manifest | tags | 
Context
| 2011-08-15 | ||
| 18:15 | Added a "bigbuild" option to testing check-in: 335b6cb191 user: rkeene tags: trunk | |
| 2011-08-06 | ||
| 16:10 | Updated to support a large test build suite if requested Minor cleanup of test scriptcheck-in: 1ebadabb1d user: rkeene tags: trunk | |
| 2011-08-04 | ||
| 01:11 | Updated to specify full path to C compiler when adjusting path (this fixes tclsh builds for KitDLL) Updated to not test NetBSD/i386 Tk since NetBSD/i386 has no X11 librariescheck-in: f0be818478 user: rkeene tags: trunk | |
Changes
Modified build/test/test from [ff0cfcb09e] to [b38b166c9c].
| 1 2 3 4 5 | #! /bin/bash VERSIONS="8.4.19 8.5.10 cvs_HEAD" # Find the base directory | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 
#! /bin/bash
VERSIONS="8.4.19 8.5.10 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
	fi
	if [ -x kitcreator ]; then
		break
 | 
| ︙ | ︙ | |||
| 61 62 63 64 65 66 67 68 69 | # Start Xvfb for X11-based tests XVFB_PID="$( Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & echo "$!" )" DISPLAY=:31 export DISPLAY failed="" | > > > > > > | | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | 
# Start Xvfb for X11-based tests
XVFB_PID="$(
	Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null &
	echo "$!"
)"
DISPLAY=:31
export DISPLAY
if [ "${BIGBUILD}" = "1" ]; then
	kits="$(echo normal{,-zip,-nomk4}{,-threaded}{,-statictk}{,-notk} normal{,-threaded}{,-notk}{,-nomk4}-kitdll win32-i586{,-zip,-nomk4}{,-threaded}{,-notk} win32-i586{,-threaded}{,-notk}{,-nomk4}-kitdll min{,-static} {linux-mipsel-min,linux-amd64-notk}{,-kitdll} {solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-zip,-nomk4}{,-threaded}{,-statictk}{,-notk} {solaris-i386,solaris-amd64,solaris-sparc,solaris-sparc64,freebsd-amd64,netbsd-amd64}{,-threaded}{,-notk}{,-nomk4}-kitdll netbsd-i386{,-zip,-nomk4}{,-threaded}{,-statictk}-notk netbsd-i386{,-threaded}{,-nomk4}-notk-kitdll)"
else
	kits="normal normal-zip normal-threaded normal-threaded-zip normal-statictk normal-notk normal-threaded-notk normal-threaded-zip-notk normal-nomk4 min min-static normal-kitdll normal-threaded-kitdll normal-notk-kitdll normal-nomk4-kitdll normal-nomk4-notk-kitdll normal-threaded-nomk4-kitdll normal-threaded-notk-nomk4-kitdll min-kitdll win32-i586 win32-i586-zip win32-i586-threaded win32-i586-threaded-zip win32-i586-notk win32-i586-threaded-notk win32-i586-nomk4 win32-i586-kitdll win32-i586-threaded-kitdll win32-i586-notk-kitdll win32-i586-nomk4-kitdll win32-i586-nomk4-notk-kitdll win32-i586-threaded-nomk4-kitdll win32-i586-threaded-notk-nomk4-kitdll linux-mipsel-min linux-mipsel-min-kitdll linux-amd64-notk linux-amd64-notk-kitdll solaris-i386 solaris-i386-kitdll solaris-amd64 solaris-amd64-kitdll solaris-sparc solaris-sparc-kitdll solaris-sparc64 solaris-sparc64-kitdll freebsd-amd64 freebsd-amd64-kitdll netbsd-i386-notk netbsd-i386-notk-kitdll netbsd-amd64 netbsd-amd64-kitdll"
fi
failed=""
for kit in $kits; do
	kitcreator="./kitcreator"
	args=""
	runnable="1"
	iszip="0"
	statictk="0"
	notk="0"
	nomk4="0"
 | 
| ︙ | ︙ | |||
| 468 469 470 471 472 473 474 | 
	done
done
if [ -n "${failed}" ]; then
	echo "Failed: ${failed}"
fi
 | > | > > | | 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | 
	done
done
if [ -n "${failed}" ]; then
	echo "Failed: ${failed}"
fi
# Cleanup
## Terminate Xvfb
kill -9 "${XVFB_PID}"
## Remove wine
rm -rf "${WINEPREFIX}"
./kitcreator clean
rm -f tclsh
 |