1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Do not attempt to run the tests in alterfault.est with SQLITE_OMIT_ALTERTABLE builds.

FossilOrigin-Name: 6f6f31c7df6831af28a24e69f744beeade739bb7bbb0810d5bbe592e4cd75e3d
This commit is contained in:
dan
2021-11-22 16:43:53 +00:00
parent 42ac4c2e5f
commit c7b29b0ce7
3 changed files with 13 additions and 7 deletions

View File

@ -15,6 +15,12 @@ set testdir [file dirname $argv0]
source $testdir/tester.tcl
set testprefix alterfault
# If SQLITE_OMIT_ALTERTABLE is defined, omit this file.
ifcapable !altertable {
finish_test
return
}
do_execsql_test 1.0 {
CREATE TABLE t1(a);
}