From e895b5356c28b33cb90dcef200059bbd266748c9 Mon Sep 17 00:00:00 2001 From: Karthick Ariyaratnam Date: Fri, 17 May 2024 14:09:55 +0000 Subject: [PATCH] Remove O3 opt in daily.yml --- .github/workflows/daily.yml | 2 +- src/unit/test_zmalloc.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 7047a3247d..63e6a150b2 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -598,7 +598,7 @@ jobs: repository: ${{ env.GITHUB_REPOSITORY }} ref: ${{ env.GITHUB_HEAD_REF }} - name: make - run: make all-with-unit-tests OPT=-O3 SANITIZER=address SERVER_CFLAGS='-DSERVER_TEST -Werror -DDEBUG_ASSERTIONS' + run: make all-with-unit-tests SANITIZER=address SERVER_CFLAGS='-DSERVER_TEST -Werror -DDEBUG_ASSERTIONS' - name: testprep # Work around ASAN issue, see https://github.com/google/sanitizers/issues/1716 run: | diff --git a/src/unit/test_zmalloc.c b/src/unit/test_zmalloc.c index 5dfff9ed59..6c1d03e8e1 100644 --- a/src/unit/test_zmalloc.c +++ b/src/unit/test_zmalloc.c @@ -1,5 +1,3 @@ -#include - #include "../zmalloc.h" #include "test_help.h"