aboutsummaryrefslogtreecommitdiff
path: root/test/view.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/view.test')
-rw-r--r--test/view.test14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/view.test b/test/view.test
index 539a737ec..9a06ef964 100644
--- a/test/view.test
+++ b/test/view.test
@@ -11,7 +11,7 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing VIEW statements.
#
-# $Id: view.test,v 1.16 2003/05/31 16:21:13 drh Exp $
+# $Id: view.test,v 1.17 2004/06/19 00:16:32 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@@ -46,7 +46,7 @@ do_test view-1.3 {
} {1 2 4 5 7 8}
do_test view-1.3.1 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM v1 ORDER BY a;
}
@@ -80,7 +80,7 @@ do_test view-1.7 {
} {2 3 5 6 8 9}
do_test view-1.8 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM v1 ORDER BY a;
}
@@ -265,7 +265,7 @@ do_test view-7.1 {
} {1 2 3}
do_test view-7.2 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM test;
}
@@ -281,7 +281,7 @@ do_test view-7.3 {
} {1 2 3}
do_test view-7.4 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM test;
}
@@ -297,7 +297,7 @@ do_test view-7.5 {
} {1 2 3}
do_test view-7.6 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM test;
}
@@ -311,7 +311,7 @@ do_test view-8.1 {
} {7 2 13 5 19 8 27 12}
do_test view-8.2 {
db close
- sqlite db test.db
+ sqlite3 db test.db
execsql {
SELECT * FROM v6 ORDER BY xyz;
}