summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorAndrew Moss <1043609+amoss@users.noreply.github.com>2019-11-14 16:49:19 +0100
committerGitHub <noreply@github.com>2019-11-14 16:49:19 +0100
commitac90f27a580aad0c4d20c5354657b34e5ceed29e (patch)
tree88667d78592d86a1392466b909e42fec32953025 /daemon
parent0d985568013377c332a7574fd2935339b583d9d4 (diff)
Updating the Travis pipeline (issue 7189) (#7312)
Added a linting pass. This is non-blocking but will output a measure of how much each .c and .h file deviates from our current .clang format. Changed the standard build to include all of the warning that we are using in dev. Added the dependencies for dbengine and confirmed that the standard build enables dbengine. Fixed the original warnings.
Diffstat (limited to 'daemon')
-rw-r--r--daemon/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/daemon/main.c b/daemon/main.c
index 1bb8546a90..de7a437023 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -921,8 +921,10 @@ int main(int argc, char **argv) {
{
char* stacksize_string = "stacksize=";
char* debug_flags_string = "debug_flags=";
+#ifdef ENABLE_DBENGINE
char* createdataset_string = "createdataset=";
char* stresstest_string = "stresstest=";
+#endif
if(strcmp(optarg, "unittest") == 0) {
if(unit_test_buffer()) return 1;