summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authorcevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-01 17:53:54 +0000
committercevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-01 17:53:54 +0000
commit6702d95218c89d39a71715ca28466e4c7b1b0e9d (patch)
treeed62ebacc9c0723b9f1c5a0336214a68ab6a1d99 /third_party
parent94488dc6a9cae202786afde91232e69c93c3ed29 (diff)
downloadchromium_src-6702d95218c89d39a71715ca28466e4c7b1b0e9d.zip
chromium_src-6702d95218c89d39a71715ca28466e4c7b1b0e9d.tar.gz
chromium_src-6702d95218c89d39a71715ca28466e4c7b1b0e9d.tar.bz2
Some simple doc updates for README.chromium:
- Note which sqlite version we are based off. - Note some prerequisite packages for running the tests. - Note that a couple of tests fail. BUG=n/a TEST=n/a Review URL: http://codereview.chromium.org/257016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27738 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/sqlite/README.chromium21
1 files changed, 17 insertions, 4 deletions
diff --git a/third_party/sqlite/README.chromium b/third_party/sqlite/README.chromium
index cdf23de..7262ff2 100644
--- a/third_party/sqlite/README.chromium
+++ b/third_party/sqlite/README.chromium
@@ -1,14 +1,18 @@
Instructions for importing a new release of SQLite from sqlite.org.
+Note: our current base version is 3.6.18.
+
First, you need to be on Linux.
# Determine the versions of the release you want and the release we currently
# have. (See the VERSION file to determine which release we currently have.)
# You may wish to consult http://www.sqlite.org/changes.html to find out what
# changes have been made in each release.
+# Note - this is just an example. Always refer to the version above for our
+# real current version.
# Set some variables to remember the versions, e.g.:
-BASE=3.6.1
-LATEST=3.6.18
+BASE=3.6.18
+LATEST=3.6.22
# Get to the src/third_party directory in your Chromium client:
cd src/third_party
@@ -67,16 +71,25 @@ Descriptions of the changes we've made can be found at the bottom of this file.
How to run the SQLite tests for the Chromium version of SQLite on Linux.
+Prerequisties: On my corp Ubuntu 8.04 workstation, I needed to install the
+following packages:
+sudo apt-get install tcl8.4-dev libicu-dev
+
cd src/third_party/sqlite
mkdir build
cd build
make -f ../Makefile.linux-gcc testfixture
make -f ../Makefile.linux-gcc test > /tmp/test.log
egrep -v 'Ok$' /tmp/test.log
-# When run on a locally-mounted disk, my output ends with:
+# For an ideal test run, you would see:
# 0 errors out of 57887 tests
+# However, the current situation on my corp Linux Ubuntu 8.04 machine, with
+# test run on a locally mounted directory, is the failure of:
+# "rollback-2.3", "tkt3457-1.4"
+# I do not know why, but it is not related to our fts2.c changes -- I backed
+# them out to check.
-Scott Hess <shess@google.com>, December 11, 2007
+Chris Evans <cevans@google.com>, Oct 1, 2009
--------------------------------------------