If you have TCL installed, you can build the 'testfixture' which is used to
run the tests.

;# Unpack the source tree into "sqlite"
mkdir sqlite
cd sqlite
tar xzf sqlite.tar.gz

;# Build will occur in a sibling directory
cd ..
mkdir bld

;# Change to the build directory
cd bld

;# Run the configure script (this generates makefile in bld directory)
../sqlite/configure

;# Run the makefile.
make

;# Make the testfixture and run fulltest suite
make fulltest


You can run individual tests by running the testfixture directly and
specifying the test you want to run:

testfixture ../sqlite/test/alter.test



On 4/30/08, Lloyd <[EMAIL PROTECTED]> wrote:
>
> Hi,
> In the test folder of sqlite3 source distribution I saw so many test
> scripts. How can I run these tests? I am curious to know the various
> testing methods used in sqlite.
>
> Thanks,
> Lloyd
>
>
> ______________________________________
> Scanned and protected by Email scanner
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to