-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Http Client benchmark #388
base: main
Are you sure you want to change the base?
Changes from all commits
c28c43b
c0b4ce4
0247e69
06ab9a8
def775f
9197dc6
4cd7338
f445de0
37696e2
f86a9f7
ca0c7c5
53d8d43
6f2c30a
2199444
2a23d4f
a34e410
8e9ffd5
fc4769c
2f0dcf4
c6a1676
e4c01fe
db1a728
9c89ade
918c9ce
e4be79e
d523095
c72d9b0
9ed287c
19bfb86
74c7b06
28ff84d
56e84e3
65c8a7f
e112d01
9287f0b
ed923c3
29ec995
2066110
bd3bef5
e4e6cbe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ project(aws-c-http C) | |
|
||
option(ENABLE_PROXY_INTEGRATION_TESTS "Whether to run the proxy integration tests that rely on pre-configured proxy" OFF) | ||
option(ENABLE_LOCALHOST_INTEGRATION_TESTS "Whether to run the integration tests that rely on pre-configured localhost" OFF) | ||
option(AWS_BUILD_CANARY "Whether to build the canary for benchmark the performance of our http client" OFF) | ||
|
||
if (NOT IN_SOURCE_BUILD) | ||
# this is required so we can use aws-c-common's CMake modules | ||
|
@@ -83,5 +84,8 @@ if (NOT BYO_CRYPTO AND BUILD_TESTING) | |
add_subdirectory(tests) | ||
if (NOT CMAKE_CROSSCOMPILING) | ||
add_subdirectory(bin/elasticurl) | ||
if (AWS_BUILD_CANARY) | ||
add_subdirectory(bin/canary) | ||
endif() | ||
Comment on lines
+87
to
+89
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why bother having an |
||
endif() | ||
endif() |
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,28 @@ | ||||||||
project(canary C) | ||||||||
|
||||||||
list(APPEND CMAKE_MODULE_PATH "${CMAKE_INSTALL_PREFIX}/lib/cmake") | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not necessary anymore
Suggested change
|
||||||||
|
||||||||
file(GLOB CANARY_SRC | ||||||||
"*.c" | ||||||||
) | ||||||||
|
||||||||
set(PROJECT_NAME canary) | ||||||||
add_executable(${PROJECT_NAME} ${CANARY_SRC}) | ||||||||
aws_set_common_properties(${PROJECT_NAME}) | ||||||||
|
||||||||
target_include_directories(${PROJECT_NAME} PUBLIC | ||||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||||||||
$<INSTALL_INTERFACE:include>) | ||||||||
|
||||||||
Comment on lines
+13
to
+16
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. trivial: don't need this either. This project doesn't have a special include/ folder. it doesn't have any headers at all
Suggested change
|
||||||||
target_link_libraries(${PROJECT_NAME} aws-c-http) | ||||||||
|
||||||||
if (BUILD_SHARED_LIBS AND NOT WIN32) | ||||||||
message(INFO " canary will be built with shared libs, but you may need to set LD_LIBRARY_PATH=${CMAKE_INSTALL_PREFIX}/lib to run the application") | ||||||||
endif() | ||||||||
|
||||||||
install(TARGETS ${PROJECT_NAME} | ||||||||
EXPORT ${PROJECT_NAME}-targets | ||||||||
COMPONENT Runtime | ||||||||
RUNTIME | ||||||||
DESTINATION bin | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
COMPONENT Runtime) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need new CI runs for this? Can't we just fold it into the existing
localhost-test-***
runs?or even better, just have these new integration tests run in all CI runs that do tests?