Skip to content
This repository was archived by the owner on Aug 8, 2023. It is now read-only.

Commit e1b23db

Browse files
committed
WIP
1 parent 7f17043 commit e1b23db

File tree

2 files changed

+44
-43
lines changed

2 files changed

+44
-43
lines changed

circle.yml

+42-42
Original file line numberDiff line numberDiff line change
@@ -4,49 +4,49 @@ workflows:
44
version: 2
55
default:
66
jobs:
7-
- nitpick
8-
- clang-tidy:
9-
filters:
10-
branches:
11-
ignore: master
12-
- android-debug-arm-v7
13-
- android-release:
14-
filters:
15-
tags:
16-
only: /android-v.*/
17-
- node-clang39-release:
18-
filters:
19-
tags:
20-
only: /node-.*/
21-
- node-gcc6-debug:
22-
filters:
23-
tags:
24-
only: /node-.*/
25-
- node-macos-release:
26-
filters:
27-
tags:
28-
only: /node-.*/
29-
- linux-clang-3.8-libcxx-debug
30-
- linux-clang4-sanitize-address
31-
- linux-clang4-sanitize-undefined
32-
- linux-clang4-sanitize-thread
7+
# - nitpick
8+
# - clang-tidy:
9+
# filters:
10+
# branches:
11+
# ignore: master
12+
# - android-debug-arm-v7
13+
# - android-release:
14+
# filters:
15+
# tags:
16+
# only: /android-v.*/
17+
# - node-clang39-release:
18+
# filters:
19+
# tags:
20+
# only: /node-.*/
21+
# - node-gcc6-debug:
22+
# filters:
23+
# tags:
24+
# only: /node-.*/
25+
# - node-macos-release:
26+
# filters:
27+
# tags:
28+
# only: /node-.*/
29+
# - linux-clang-3.8-libcxx-debug
30+
# - linux-clang4-sanitize-address
31+
# - linux-clang4-sanitize-undefined
32+
# - linux-clang4-sanitize-thread
3333
- linux-gcc4.9-debug
34-
- linux-gcc5-debug-coverage
35-
- ios-debug
36-
- ios-sanitize
37-
- ios-sanitize-address
38-
- ios-static-analyzer
39-
- ios-release
40-
- ios-release-tag:
41-
filters:
42-
tags:
43-
only: /ios-.*/
44-
branches:
45-
ignore: /.*/
46-
- macos-debug
47-
- qt4-linux-gcc5-release
48-
- qt5-linux-gcc5-release
49-
- qt5-macos-debug
34+
# - linux-gcc5-debug-coverage
35+
# - ios-debug
36+
# - ios-sanitize
37+
# - ios-sanitize-address
38+
# - ios-static-analyzer
39+
# - ios-release
40+
# - ios-release-tag:
41+
# filters:
42+
# tags:
43+
# only: /ios-.*/
44+
# branches:
45+
# ignore: /.*/
46+
# - macos-debug
47+
# - qt4-linux-gcc5-release
48+
# - qt5-linux-gcc5-release
49+
# - qt5-macos-debug
5050
nightly:
5151
triggers:
5252
- schedule:

test/storage/offline_database.test.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -194,12 +194,13 @@ TEST(OfflineDatabase, TEST_REQUIRES_WRITE(CreateFail)) {
194194
#endif // __QT__
195195

196196
TEST(OfflineDatabase, TEST_REQUIRES_WRITE(SchemaVersion)) {
197+
sleep(1);
197198
FixtureLog log;
198199
deleteDatabaseFiles();
199200

200201
{
201202
mapbox::sqlite::Database db = mapbox::sqlite::Database::open(filename, mapbox::sqlite::ReadWriteCreate);
202-
db.setBusyTimeout(Milliseconds::max());
203+
db.setBusyTimeout(Milliseconds(1000));
203204
db.exec("PRAGMA user_version = 1");
204205
}
205206

0 commit comments

Comments
 (0)