OLD | NEW |
1 Name: sqlite | 1 Name: sqlite |
2 URL: http://sqlite.org/ | 2 URL: http://sqlite.org/ |
3 Version: 3.10.2 | 3 Version: 3.17 |
4 Included In Release: Yes | 4 Included In Release: Yes |
5 Security Critical: Yes | 5 Security Critical: Yes |
6 License: Public domain | 6 License: Public domain |
7 | 7 |
8 1) Managing differences between SQLite core and Chromium's version. | 8 1) Managing differences between SQLite core and Chromium's version. |
9 2) Making changes to Chromium SQLite. | 9 2) Making changes to Chromium SQLite. |
10 3) Import new release of SQLite. | 10 3) Import new release of SQLite. |
11 4) Running SQLite's test suite within the Chromium checkout. | 11 4) Running SQLite's test suite within the Chromium checkout. |
12 | 12 |
13 --- | 13 --- |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 NOTE(shess): On Ubuntu it is possible to run the tests in a tmpfs something | 251 NOTE(shess): On Ubuntu it is possible to run the tests in a tmpfs something |
252 like: | 252 like: |
253 | 253 |
254 TMPFS=/dev/shm/sqlite_build | 254 TMPFS=/dev/shm/sqlite_build |
255 BUILD=$PWD | 255 BUILD=$PWD |
256 mkdir $TMPFS | 256 mkdir $TMPFS |
257 (cd $TMPFS ; $BUILD/testfixture $BUILD/../test/veryquick.test >/tmp/test.log) | 257 (cd $TMPFS ; $BUILD/testfixture $BUILD/../test/veryquick.test >/tmp/test.log) |
258 | 258 |
259 This is faster, but it is plausible that different things are being tested than | 259 This is faster, but it is plausible that different things are being tested than |
260 real-world use. | 260 real-world use. |
OLD | NEW |