Overview
Comment: | Cherrypicked 0c30d1cfe5 d67a67f9a4 into trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
351bb3585bf1beaff5f633911dbaf3b8 |
User & Date: | mrwellan on 2013-02-26 09:13:02 |
Other Links: | manifest | tags |
Context
2013-02-26
| ||
14:31 | Part of the transaction support for writes patched in check-in: fb8ea93dd7 user: mrwellan tags: trunk | |
09:13 | Cherrypicked 0c30d1cfe5 d67a67f9a4 into trunk check-in: 351bb3585b user: mrwellan tags: trunk | |
2013-02-25
| ||
23:03 | Changed test(s) to support setting of TARGETHOST to better enable wal mode testing check-in: 292bf433e1 user: matt tags: trunk | |
Changes
Modified tests/Makefile from [9996adc105] to [3743960820].
︙ | ︙ | |||
64 65 66 67 68 69 70 | mkdir -p /tmp/mt_runs /tmp/mt_links cd ..;make install rm -f */logging.db touch cleanprep fullprep : cleanprep cd fullrun;$(MEGATEST) -remove-runs :runname $(RUNNAME)% -target %/%/% -testpatt %/% | | | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | mkdir -p /tmp/mt_runs /tmp/mt_links cd ..;make install rm -f */logging.db touch cleanprep fullprep : cleanprep cd fullrun;$(MEGATEST) -remove-runs :runname $(RUNNAME)% -target %/%/% -testpatt %/% cd fullrun;$(BINPATH)/dashboard -rows 15 & dashboard : cleanprep cd fullrun && $(BINPATH)/dashboard -rows 25 & remove : cd fullrun;$(MEGATEST) -remove-runs :runname $(RUN) -testpatt % -itempatt % :sysname % :fsname % :datapath % |
︙ | ︙ |
Added txtdb/txtdb.scm version [5f75a02c13].
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ;; Copyright 2006-2012, Matthew Welland. ;; ;; This program is made available under the GNU GPL version 2.0 or ;; greater. See the accompanying file COPYING for details. ;; ;; This program is distributed WITHOUT ANY WARRANTY; without even the ;; implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ;; PURPOSE. (use ssax) ;; Read a non-compressed gnumeric file (define (txtdb:read-gnumeric-xml fname) (with-input-from-file fname (lambda () (ssax:xml->sxml (current-input-port) '())))) ;; (serialize-sxml a output: "new.xml") |