diff options
| author | Stefan Boberg <[email protected]> | 2025-05-15 11:22:29 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-05-15 12:22:29 +0200 |
| commit | 5df6ebbf497401b6124a0b44470165bc14880585 (patch) | |
| tree | 74092bf1bb3b65b0648c3de4453e2e31b63cae16 /src/zenstore/zenstore.cpp | |
| parent | `zen oplog-import` and `zen oplog-export` now supports `--oidctoken-exe-path`... (diff) | |
| download | zen-5df6ebbf497401b6124a0b44470165bc14880585.tar.xz zen-5df6ebbf497401b6124a0b44470165bc14880585.zip | |
make sure tests initialize trace so we don't end up allocating tons of memory for no reason (#397)
Diffstat (limited to 'src/zenstore/zenstore.cpp')
| -rw-r--r-- | src/zenstore/zenstore.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zenstore/zenstore.cpp b/src/zenstore/zenstore.cpp index c697647d2..654fb3510 100644 --- a/src/zenstore/zenstore.cpp +++ b/src/zenstore/zenstore.cpp @@ -5,6 +5,7 @@ #if ZEN_WITH_TESTS # include <zenstore/blockstore.h> +# include <zenstore/buildstore/buildstore.h> # include <zenstore/cache/structuredcachestore.h> # include <zenstore/workspaces.h> # include <zenstore/gc.h> @@ -19,6 +20,7 @@ namespace zen { void zenstore_forcelinktests() { + buildstore_forcelink(); CAS_forcelink(); filecas_forcelink(); blockstore_forcelink(); |