diff options
author | Russ Allbery <eagle@eyrie.org> | 2014-12-08 20:23:40 -0800 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2014-12-08 20:23:40 -0800 |
commit | 5e28178e2665459ce33bb4f692dc8dc4d8bfe3b9 (patch) | |
tree | ee7f87f324cbe6ee755720d867e6b0e7e13c887b /perl | |
parent | f154a7b373491eff28e3a062e6f5fd9870a7ea0c (diff) |
Update skip count for systems without sqlite3
Change-Id: I2180daf5055a90ae52b8a851f514993004da5303
Diffstat (limited to 'perl')
-rwxr-xr-x | perl/t/general/admin.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/t/general/admin.t b/perl/t/general/admin.t index 47396c6..17671b6 100755 --- a/perl/t/general/admin.t +++ b/perl/t/general/admin.t @@ -69,7 +69,7 @@ is ($admin->reinitialize ('admin@EXAMPLE.COM'), 1, SKIP: { my @path = (split (':', $ENV{PATH})); my ($sqlite) = grep { -x $_ } map { "$_/sqlite3" } @path; - skip 'sqlite3 not found', 5 unless $sqlite; + skip 'sqlite3 not found', 7 unless $sqlite; # Delete all tables and then redump them straight from the SQL file to # avoid getting the version table. |