Skip to content

Commit 27b6a19

Browse files
jmccormick7edsiper
authored andcommitted
tests: making go proxy test Linux only
This commit makes the go proxy a test that only runs on Linux using the CMAKE_SYSTEM_NAME. It also removes an autogenerated header file from the go compile that should not have been commited. Signed-off-by: jmccormick7 <jcm258@case.edu>
1 parent c16180e commit 27b6a19

2 files changed

Lines changed: 4 additions & 93 deletions

File tree

tests/runtime_shell/CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ set(UNIT_TESTS_SH
1515
in_syslog_uds_stream_plaintext_expect.sh
1616
processor_conditional.sh
1717
processor_invalid.sh
18-
proxy_logs_expect.sh
1918
)
2019

20+
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
21+
list(APPEND UNIT_TESTS_SH proxy_logs_expect.sh)
22+
endif()
23+
2124
# Prepare list of unit tests
2225
foreach(script ${UNIT_TESTS_SH})
2326
add_test(NAME ${script}

tests/runtime_shell/go_plugins/test_logs_go.h

Lines changed: 0 additions & 92 deletions
This file was deleted.

0 commit comments

Comments
 (0)