blob: 6302da5c9c48447f1470f4803e8707eef1dba0fa [file] [log] [blame]
From 39cdcb9895e5ceaf67a169ff64e0824d731b5fe7 Mon Sep 17 00:00:00 2001
From: Chenglong Tang <chenglongtang@google.com>
Date: Tue, 10 Dec 2024 05:55:03 +0000
Subject: [PATCH] Customize make test-integration scripts
1. We only need to build test binaries during build time, no need to
run test daemon or clean up binaries
---
hack/make/test-integration | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/hack/make/test-integration b/hack/make/test-integration
index 458d059378..a65e86e38e 100755
--- a/hack/make/test-integration
+++ b/hack/make/test-integration
@@ -11,14 +11,14 @@ fi
(
env
build_test_suite_binaries
- bundle .integration-daemon-start
+ # bundle .integration-daemon-start
testexit=0
- (repeat run_test_integration) || testexit=$?
+ # (repeat run_test_integration) || testexit=$?
# Always run cleanup, even if the subshell fails
- bundle .integration-daemon-stop
- cleanup_test_suite_binaries
+ # bundle .integration-daemon-stop
+ # cleanup_test_suite_binaries
echo exiting test-integration
set -x