-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathservice_testing.mk
More file actions
70 lines (52 loc) · 3.21 KB
/
service_testing.mk
File metadata and controls
70 lines (52 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
$(eval $(call library,mongo_tmp_server,mongo_temporary_server.cc, services))
$(eval $(call test,epoll_test,services,boost))
$(eval $(call test,epoll_wait_test,services,boost manual))
$(eval $(call test,named_endpoint_test,services,boost manual))
$(eval $(call test,zmq_named_pub_sub_test,services,boost manual))
$(eval $(call test,zmq_endpoint_test,services,boost manual))
$(eval $(call test,message_channel_test,services,boost))
$(eval $(call test,rest_service_endpoint_test,services,boost))
$(eval $(call test,multiple_service_test,services,boost manual))
$(eval $(call test,zookeeper_test,cloud,boost manual))
$(eval $(call test,aws_test,cloud,boost))
$(eval $(call test,redis_async_test,redis,boost))
$(eval $(call test,redis_commands_test,redis,boost))
$(eval $(call nodejs_test,opstats_js_test,opstats,,,manual))
$(eval $(call test,statsd_connector_test,opstats,boost manual))
$(eval $(call test,carbon_connector_test,opstats endpoint,boost manual))
$(eval $(call test,endpoint_unit_test,endpoint,boost))
$(eval $(call test,test_active_endpoint_nothing_listening,endpoint,boost manual))
$(eval $(call test,test_active_endpoint_not_responding,endpoint,boost manual))
$(eval $(call test,test_endpoint_ping_pong,endpoint,boost manual))
$(eval $(call test,test_endpoint_connection_speed,endpoint,boost manual))
$(eval $(call test,test_endpoint_accept_speed,endpoint,boost))
$(eval $(call test,endpoint_periodic_test,endpoint,boost))
$(eval $(call test,endpoint_closed_connection_test,endpoint,boost))
$(eval $(call test,http_long_header_test,endpoint,boost manual))
$(eval $(call test,http_header_test,endpoint,boost manual))
$(eval $(call test,http_rest_proxy_stress_test,services,boost manual))
$(eval $(call test,service_proxies_test,endpoint,boost manual))
$(eval $(call test,message_loop_test,services,boost))
$(eval $(call test,timer_event_source_test,services,boost))
$(eval $(call program,runner_test_helper,utils))
$(eval $(call test,runner_test,services,boost))
$(eval $(call test,runner_stress_test,services,boost))
$(TESTS)/runner_test $(TESTS)/runner_stress_test: $(BIN)/runner_test_helper
$(eval $(call test,sink_test,services,boost))
#$(eval $(call test,zmq_tcp_bench,services,boost manual timed))
$(eval $(call test,nprobe_test,services,boost manual))
$(eval $(call library,test_services,test_http_services.cc,services))
$(eval $(call program,async_writer_bench,services))
# nsq_client_test is "manual" because of dependency on nsqd */
$(eval $(call test,nsq_client_test,cloud,boost manual))
$(eval $(call test,http_client_test_v1,services test_services,boost))
$(eval $(call test,http_client_test_v2,services test_services,boost manual))
$(eval $(call test,http_client_online_test,services test_services,boost manual))
$(eval $(call test,http_client_bench,boost_program_options services test_services,boost manual))
$(eval $(call test,http_parsers_test,services test_services,boost valgrind))
$(eval $(call test,logs_test,services,boost))
$(eval $(call test,sns_mock_test,cloud services,boost))
$(eval $(call test,zmq_message_loop_test,services,boost))
$(eval $(call test,event_handler_test,cloud services,boost manual))
$(eval $(call test,mongo_basic_test,services boost_filesystem mongo_tmp_server,boost manual))
$(eval $(call include_sub_makes,py))