]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
When compiling extensions in the load_extension tests, specify a path
authordrh <drh@noemail.net>
Tue, 27 Jun 2006 18:38:51 +0000 (18:38 +0000)
committerdrh <drh@noemail.net>
Tue, 27 Jun 2006 18:38:51 +0000 (18:38 +0000)
for finding include files. (CVS 3313)

FossilOrigin-Name: aee4b669944ccf3888daa9d9e54f16261c64f380

manifest
manifest.uuid
test/loadext.test

index b6a738dd26d609576b72bf4633062fcb84f580cf..c2fbba1b0b2d817480ef924fc15ce109c4c8a5f3 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Prevent\sdatabases\sfrom\sbeing\sDETACHed\swhile\sthey\sare\sin\suse.\sFix\sfor\s#1873.\s(CVS\s3312)
-D 2006-06-27T16:34:57
+C When\scompiling\sextensions\sin\sthe\sload_extension\stests,\sspecify\sa\spath\nfor\sfinding\sinclude\sfiles.\s(CVS\s3313)
+D 2006-06-27T18:38:52
 F Makefile.in f839b470345d3cb4b0644068474623fe2464b5d3
 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -196,7 +196,7 @@ F test/lastinsert.test 474d519c68cb79d07ecae56a763aa7f322c72f51
 F test/laststmtchanges.test 19a6d0c11f7a31dc45465b495f7b845a62cbec17
 F test/like.test 5f7d76574752a9101cac13372c8a85999d0d91e6
 F test/limit.test 2a87b9cb2165abb49ca0ddcf5cb43cf24074581f
-F test/loadext.test 146ead2c34b76fe4d51a5054b7e52b76f35fba90
+F test/loadext.test 0f6e7c469d2a3036c29512c1a36c09b303dfd727
 F test/lock.test 9b7afcb24f53d24da502abb33daaad2cd6d44107
 F test/lock2.test d83ba79d3c4fffdb5b926c7d8ca7a36c34288a55
 F test/lock3.test 615111293cf32aa2ed16d01c6611737651c96fb9
@@ -375,7 +375,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 4692319ccf28b0ebe64d5c5d189f444034fe0cb2
-R 00197d0cb5b5b0794b65c7727c5ea79d
-U danielk1977
-Z 1504eda4a9a7a809d58a186051ca9568
+P 70a48b250bab99c5d9b4ad17c471663b8628e8d2
+R 79c4a0c26ade3124618190d2b0ac3a29
+U drh
+Z 4c8a86e91bcfbf402d238b06dc62212e
index 12d551a70451d613405886ace82d0a88cab8b72a..de1f5317567646ee36386b6388bde8c8bbae013b 100644 (file)
@@ -1 +1 @@
-70a48b250bab99c5d9b4ad17c471663b8628e8d2
\ No newline at end of file
+aee4b669944ccf3888daa9d9e54f16261c64f380
\ No newline at end of file
index 514edb39ac86e438d24c56625d1bfcd5e0c62c31..0cefac240621ebb0388512b2f6dc4356c91ca979 100644 (file)
@@ -11,7 +11,7 @@
 # This file implements regression tests for SQLite library.  The
 # focus of this script is in-memory database backend.
 #
-# $Id: loadext.test,v 1.5 2006/06/27 15:16:16 drh Exp $
+# $Id: loadext.test,v 1.6 2006/06/27 18:38:52 drh Exp $
 
 set testdir [file dirname $argv0]
 source $testdir/tester.tcl
@@ -32,7 +32,7 @@ if {![file exists $testextension]} {
   set srcdir [file dir $testdir]/src
   set testextsrc $srcdir/test_loadext.c
   if {[catch {
-    exec gcc -Wall -g -shared $testextsrc -o $testextension
+    exec gcc -Wall -I$srcdir -I. -g -shared $testextsrc -o $testextension
   } msg]} {
     puts "Skipping loadext tests: Test extension not built..."
     puts $msg