On 5/13/15, Sairam Gaddam <gaddamsairam at gmail.com> wrote: > In order to run .test files(sqlite test codes) in SQLite, I used > > ./testfixture NAMEOFFILE.test > > Can anyone kindly tell which build of sqlite will TESTFIXTURE access? > > Because even when I make modifications to sqlite3.c source code, the output > of the test file under test has no effect.
testfixture.exe builds from individual source files in the src/ directory, not from the amalgamation file sqlite3.c. So you'll need to make your changes to individual source files then incorporate those changes into sqlite3.c by running "make sqlite3.c" and into testfixture.exe by running "make test". > > > And one more question is that, In order to test my custom build of > sqlite3.c, > I installed both TCL and SQLite, and gave the command ./configure > After that the source file sqlite3.c file is formed and I replaced the > original sqlite3.c file with my customized sqlite3.c with the same name. > But when I ran make test command, the program again replaces my customized > sqlite3.c with the original sqlite3.c source file and tests it. So I am not > able to run tests on my modified file. So can anyone tell why it replaces > with original file and what to do in order to test my custom build. > _______________________________________________ > sqlite-users mailing list > sqlite-users at mailinglists.sqlite.org > http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users > -- D. Richard Hipp drh at sqlite.org