1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Sort the output of glob in test script attach2.test. Ticket #948. (CVS 2012)

FossilOrigin-Name: 3d04eef9b7decd21acc30d47af1bb1386333c351
This commit is contained in:
drh
2004-10-07 22:22:39 +00:00
parent 2090a0ed48
commit 57790b8fca
3 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
# focus of this script is testing the ATTACH and DETACH commands
# and related functionality.
#
# $Id: attach2.test,v 1.26 2004/09/02 14:57:09 drh Exp $
# $Id: attach2.test,v 1.27 2004/10/07 22:22:39 drh Exp $
#
set testdir [file dirname $argv0]
@@ -323,7 +323,7 @@ do_test attach2-5.2 {
}
} {}
do_test attach2-5.3 {
glob test.db*
lsort [glob test.db*]
} {test.db test.db2}
do_test attach2-5.4 {
execsql {
@@ -334,7 +334,7 @@ do_test attach2-5.4 {
}
} {}
do_test attach2-5.5 {
glob test.db*
lsort [glob test.db*]
} {test.db test.db2}
# Check that a database cannot be ATTACHed or DETACHed during a transaction.