Skip to content

Commit e0fc21d

Browse files
committed
Dont fail in benchmark when tile could not be downloaded
1 parent 1280ee3 commit e0fc21d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bench/src/tileLoading.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ class TileLoadingFixture : public benchmark::Fixture {
9292
LOG("SETUP");
9393
ctx.loadScene("scene.yaml");
9494
ctx.loadTile("tile.mvt");
95-
ctx.parseTile();
9695
LOG("READY");
9796
}
9897
void TearDown() override {
@@ -102,14 +101,14 @@ class TileLoadingFixture : public benchmark::Fixture {
102101
};
103102

104103
BENCHMARK_DEFINE_F(TileLoadingFixture, BuildTest)(benchmark::State& st) {
105-
#if 1
106104
while (st.KeepRunning()) {
107105
ctx.parseTile();
106+
if (!ctx.tileData) { break; }
107+
108108
result = ctx.tileBuilder->build({0,0,10,10,0}, *ctx.tileData, *ctx.source);
109109

110110
LOG("ok %d / bytes - %d", bool(result), result->getMemoryUsage());
111111
}
112-
#endif
113112
}
114113

115114
BENCHMARK_REGISTER_F(TileLoadingFixture, BuildTest);

0 commit comments

Comments
 (0)