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. 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.