Skip to content

Commit

Permalink
Merge branch 'develop' into jhilliard/config-dump-json
Browse files Browse the repository at this point in the history
  • Loading branch information
praetoriansentry committed Oct 16, 2023
2 parents b942825 + a8f1429 commit 4396fa8
Show file tree
Hide file tree
Showing 9 changed files with 1,581 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ void Config::load(json &config)
ParseString(config, "checkTreeRoot", "CHECK_TREE_ROOT", checkTreeRoot, "auto");
ParseBool(config, "runDatabasePerformanceTest", "RUN_DATABASE_PERFORMANCE_TEST", runDatabasePerformanceTest, false);
ParseBool(config, "runPageManagerTest", "RUN_PAGE_MANAGER_TEST", runPageManagerTest, false);
ParseBool(config, "runKeyValueTreeTest", "RUN_KEY_VALUE_TREE_TEST", runKeyValueTreeTest, false);
ParseBool(config, "runSMT64Test", "RUN_SMT64_TEST", runSMT64Test, false);
ParseBool(config, "runUnitTest", "RUN_UNIT_TEST", runUnitTest, false);

Expand Down
1 change: 1 addition & 0 deletions src/config/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ class Config
string checkTreeRoot;
bool runDatabasePerformanceTest;
bool runPageManagerTest;
bool runKeyValueTreeTest;
bool runSMT64Test;
bool runUnitTest;

Expand Down
Loading

0 comments on commit 4396fa8

Please sign in to comment.