This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new 1cc6f76726 Build binaries for bigobj AuTest (#9965)
1cc6f76726 is described below

commit 1cc6f767267f86c81788b69afb7b2074ede5ad04
Author: JosiahWI <[email protected]>
AuthorDate: Thu Jul 6 14:28:37 2023 -0500

    Build binaries for bigobj AuTest (#9965)
    
    This builds the 2 binaries needed for the bigojb AuTest. It places
    them in the source tree (ugh) where the AuTest expects to find them.
---
 tests/CMakeLists.txt                         |  1 +
 tests/{ => gold_tests/bigobj}/CMakeLists.txt | 16 +++++++++++++++-
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index c850e7cbfa..4ae1718625 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -15,4 +15,5 @@
 #
 #######################
 
+add_subdirectory(gold_tests/bigobj)
 add_subdirectory(gold_tests/pluginTest/TSVConnFd)
diff --git a/tests/CMakeLists.txt b/tests/gold_tests/bigobj/CMakeLists.txt
similarity index 73%
copy from tests/CMakeLists.txt
copy to tests/gold_tests/bigobj/CMakeLists.txt
index c850e7cbfa..d34d04487d 100644
--- a/tests/CMakeLists.txt
+++ b/tests/gold_tests/bigobj/CMakeLists.txt
@@ -15,4 +15,18 @@
 #
 #######################
 
-add_subdirectory(gold_tests/pluginTest/TSVConnFd)
+add_executable(check_ramp check_ramp.c)
+
+set_property(
+  TARGET check_ramp
+  PROPERTY RUNTIME_OUTPUT_DIRECTORY
+  "${CMAKE_CURRENT_SOURCE_DIR}"
+)
+
+add_executable(push_request push_request.c)
+
+set_property(
+  TARGET push_request
+  PROPERTY RUNTIME_OUTPUT_DIRECTORY
+  "${CMAKE_CURRENT_SOURCE_DIR}"
+)

Reply via email to