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: |
372b2ae1494525502404ce93b25ff9bd |
| 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
Changes to generic/Makefile.in.
| ︙ | ︙ | |||
147 148 149 150 151 152 153 154 155 156 157 158 | ### 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 :: | > > > | | | | 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 |
| ︙ | ︙ |