diff options
author | drh <drh@noemail.net> | 2011-05-23 18:37:42 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2011-05-23 18:37:42 +0000 |
commit | a12b6fa392a7d81d5c4720f199d542671b9c9afd (patch) | |
tree | 8c7a209dd6a26f59ce24de8b2de475791e9f4c96 /src/test_vfs.c | |
parent | 1c48530a13d2943141ca20641e300a3c6de23682 (diff) | |
download | sqlite-a12b6fa392a7d81d5c4720f199d542671b9c9afd.tar.gz sqlite-a12b6fa392a7d81d5c4720f199d542671b9c9afd.zip |
Minor cleanups to the header comments on various test_*.c file, to make
the suitable for programmer-level documentation.
FossilOrigin-Name: a65d043a2ad895b931871c67e0ef397a1dc614a6
Diffstat (limited to 'src/test_vfs.c')
-rw-r--r-- | src/test_vfs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/test_vfs.c b/src/test_vfs.c index ba078a0f9..696321d26 100644 --- a/src/test_vfs.c +++ b/src/test_vfs.c @@ -10,10 +10,6 @@ ** ****************************************************************************** ** -*/ -#if SQLITE_TEST /* This file is used for testing only */ - -/* ** This file contains the implementation of the Tcl [testvfs] command, ** used to create SQLite VFS implementations with various properties and ** instrumentation to support testing SQLite. @@ -28,6 +24,7 @@ ** -mxpathname INTEGER (Value for sqlite3_vfs.mxPathname) ** -iversion INTEGER (Value for sqlite3_vfs.iVersion) */ +#if SQLITE_TEST /* This file is used for testing only */ #include "sqlite3.h" #include "sqliteInt.h" |