Unnamed Fossil Project

Check-in [372b2ae149]
Login

Check-in [372b2ae149]

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

Overview
Comment:Fix test rules so 'make vgtest' gets the right '-load' flag.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | master | trunk
Files: files | file ages | folders
SHA3-256: 372b2ae1494525502404ce93b25ff9bd16ed4fcec1ddd2e51539ab6e2405e08c
User & Date: jenglish 2006-11-12 18:51:35.000
Context
2006-11-12
20:34
Reworked cleanup procedure -- "self-cancelling" idle call is not robust, call Tcl_CancelIdleCall() in TtkFreeScrollHandle instead. [fixes #1588251] check-in: 2112068291 user: jenglish tags: master, trunk
18:51
Fix test rules so 'make vgtest' gets the right '-load' flag. check-in: 372b2ae149 user: jenglish tags: master, trunk
2006-11-11
22:16
Big Renaming (patch from DAS); all globals now have "ttk" prefix, to match core conventions. check-in: 2f2d91bd1c user: jenglish tags: master, trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/Makefile.in.
147
148
149
150
151
152
153

154

155
156

157
158
159
160
161
162
163
164
165
166
167
168
169
170
### Documentation section.
#

### Test stuff section.
#
TILE_LIBRARY	= $(srcdir)/../library
TESTLOAD	= -load "load ./$(tile_LIB_FILE)"

TESTFLAGS 	= -verbose e

VALGRIND_OPTS	= --tool=memcheck --leak-check=yes --num-callers=10
VALGRIND	= valgrind $(VALGRIND_OPTS)


test ::
	$(WISH) $(srcdir)/../tests/all.tcl $(TESTLOAD) $(TESTFLAGS)

vgtest ::
	$(WISH_ENV) $(VALGRIND) $(WISH_PROG) $(srcdir)/../tests/all.tcl \
		-verbose pbe -singleproc true 2>&1 | tee valgrind.log

valgrind ::
	$(WISH_ENV) $(VALGRIND) $(WISH_PROG) $(SCRIPT) 2>&1 | tee valgrind.log

demo ::
	$(WISH) $(srcdir)/../demos/demo.tcl








>

>


>


|


|
|







147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
### Documentation section.
#

### Test stuff section.
#
TILE_LIBRARY	= $(srcdir)/../library
TESTLOAD	= -load "load ./$(tile_LIB_FILE)"
TESTDRIVER	= $(srcdir)/../tests/all.tcl $(TESTLOAD)
TESTFLAGS 	= -verbose e

VALGRIND_OPTS	= --tool=memcheck --leak-check=yes --num-callers=10
VALGRIND	= valgrind $(VALGRIND_OPTS)
VGTESTFLAGS	= -verbose pbe -singleproc true

test ::
	$(WISH) $(TESTDRIVER) $(TESTFLAGS)

vgtest ::
	$(WISH_ENV) $(VALGRIND) $(WISH_PROG) $(TESTDRIVER) $(VGTESTFLAGS) \
	    2>&1 | tee valgrind.log

valgrind ::
	$(WISH_ENV) $(VALGRIND) $(WISH_PROG) $(SCRIPT) 2>&1 | tee valgrind.log

demo ::
	$(WISH) $(srcdir)/../demos/demo.tcl