From 676882cd5c24062bc9a5db8b70eafeb03113af77 Mon Sep 17 00:00:00 2001 From: Harsh Gandhi <63674702+HarshGandhi-AWS@users.noreply.github.com> Date: Wed, 12 Jul 2023 18:25:49 -0700 Subject: [PATCH] Update GTestMain.cpp to not cleanup resources after testing is completed This change will be reverted later. Added this to investigate DD integ test failure --- integration-tests/source/GTestMain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/source/GTestMain.cpp b/integration-tests/source/GTestMain.cpp index ac4709ab1..a67f6f51f 100644 --- a/integration-tests/source/GTestMain.cpp +++ b/integration-tests/source/GTestMain.cpp @@ -104,7 +104,7 @@ bool parseCliArgs(int argc, char **argv) } else if (currentArg == CLI_CLEAN_UP) { - CLEAN_UP = true; + CLEAN_UP = false; } else { @@ -185,4 +185,4 @@ int main(int argc, char **argv) printf("Tests Complete!\n"); Aws::ShutdownAPI(options); return rc; -} \ No newline at end of file +}