Jan Tattermusch | d5b076a | 2015-02-12 19:16:42 -0800 | [diff] [blame] | 1 | # NMake file to build secondary gRPC targets on Windows. |
| 2 | # Use grpc.sln to solution to build the gRPC libraries. |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 3 | |
| 4 | OUT_DIR=test_bin |
| 5 | |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 6 | CC=cl.exe |
| 7 | LINK=link.exe |
Jan Tattermusch | 64d10c1 | 2015-02-13 09:39:54 -0800 | [diff] [blame] | 8 | |
| 9 | INCLUDES=/I..\.. /I..\..\include /I..\..\third_party\zlib /I..\third_party /I..\..\third_party\openssl\inc32 |
| 10 | DEFINES=/D WIN32 /D _LIB /D _USE_32BIT_TIME_T /D _UNICODE /D UNICODE /D _CRT_SECURE_NO_WARNINGS |
| 11 | CFLAGS=/c $(INCLUDES) /nologo /Z7 /W3 /WX- /sdl $(DEFINES) /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Gd /TC /analyze- |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 12 | LFLAGS=/DEBUG /INCREMENTAL /NOLOGO /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /MACHINE:X86 |
Jan Tattermusch | 64d10c1 | 2015-02-13 09:39:54 -0800 | [diff] [blame] | 13 | |
| 14 | OPENSSL_LIBS=..\..\third_party\openssl\out32\ssleay32.lib ..\..\third_party\openssl\out32\libeay32.lib |
| 15 | WINSOCK_LIBS=ws2_32.lib |
| 16 | ZLIB_LIBS=Debug\zlibwapi.lib |
| 17 | LIBS=$(OPENSSL_LIBS) $(WINSOCK_LIBS) $(ZLIB_LIBS) |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 18 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 19 | gpr_test_util: |
| 20 | MSBuild.exe gpr_test_util.vcxproj /p:Configuration=Debug |
| 21 | |
| 22 | grpc_test_util: |
Jan Tattermusch | 1312666 | 2015-02-12 18:52:07 -0800 | [diff] [blame] | 23 | MSBuild.exe grpc_test_util.vcxproj /p:Configuration=Debug |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 24 | |
| 25 | $(OUT_DIR): |
| 26 | mkdir $(OUT_DIR) |
| 27 | |
Craig Tiller | 16a6ea6 | 2015-02-20 09:08:54 -0800 | [diff] [blame] | 28 | buildtests: alarm_heap_test.exe alarm_list_test.exe alarm_test.exe alpn_test.exe bin_encoder_test.exe census_hash_table_test.exe census_statistics_multiple_writers_circular_buffer_test.exe census_statistics_multiple_writers_test.exe census_statistics_performance_test.exe census_statistics_quick_test.exe census_statistics_small_log_test.exe census_stats_store_test.exe census_stub_test.exe census_trace_store_test.exe census_window_stats_test.exe chttp2_status_conversion_test.exe chttp2_stream_encoder_test.exe chttp2_stream_map_test.exe chttp2_transport_end2end_test.exe dualstack_socket_test.exe echo_test.exe fd_posix_test.exe fling_stream_test.exe fling_test.exe gpr_cancellable_test.exe gpr_cmdline_test.exe gpr_env_test.exe gpr_file_test.exe gpr_histogram_test.exe gpr_host_port_test.exe gpr_log_test.exe gpr_slice_buffer_test.exe gpr_slice_test.exe gpr_string_test.exe gpr_sync_test.exe gpr_thd_test.exe gpr_time_test.exe gpr_useful_test.exe grpc_base64_test.exe grpc_byte_buffer_reader_test.exe grpc_channel_stack_test.exe grpc_completion_queue_test.exe grpc_credentials_test.exe grpc_json_token_test.exe grpc_stream_op_test.exe hpack_parser_test.exe hpack_table_test.exe httpcli_format_request_test.exe httpcli_parser_test.exe httpcli_test.exe interop_test.exe json_rewrite_test.exe json_test.exe lame_client_test.exe message_compress_test.exe metadata_buffer_test.exe multi_init_test.exe murmur_hash_test.exe no_server_test.exe poll_kick_posix_test.exe resolve_address_test.exe secure_endpoint_test.exe sockaddr_utils_test.exe tcp_client_posix_test.exe tcp_posix_test.exe tcp_server_posix_test.exe time_averaged_stats_test.exe time_test.exe timeout_encoding_test.exe transport_metadata_test.exe |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 29 | echo All tests built. |
| 30 | |
Craig Tiller | 16a6ea6 | 2015-02-20 09:08:54 -0800 | [diff] [blame] | 31 | test: alarm_heap_test alarm_list_test alarm_test alpn_test bin_encoder_test census_hash_table_test census_statistics_multiple_writers_circular_buffer_test census_statistics_multiple_writers_test census_statistics_performance_test census_statistics_quick_test census_statistics_small_log_test census_stats_store_test census_stub_test census_trace_store_test census_window_stats_test chttp2_status_conversion_test chttp2_stream_encoder_test chttp2_stream_map_test chttp2_transport_end2end_test dualstack_socket_test echo_test fd_posix_test fling_stream_test fling_test gpr_cancellable_test gpr_cmdline_test gpr_env_test gpr_file_test gpr_histogram_test gpr_host_port_test gpr_log_test gpr_slice_buffer_test gpr_slice_test gpr_string_test gpr_sync_test gpr_thd_test gpr_time_test gpr_useful_test grpc_base64_test grpc_byte_buffer_reader_test grpc_channel_stack_test grpc_completion_queue_test grpc_credentials_test grpc_json_token_test grpc_stream_op_test hpack_parser_test hpack_table_test httpcli_format_request_test httpcli_parser_test httpcli_test interop_test json_rewrite_test json_test lame_client_test message_compress_test metadata_buffer_test multi_init_test murmur_hash_test no_server_test poll_kick_posix_test resolve_address_test secure_endpoint_test sockaddr_utils_test tcp_client_posix_test tcp_posix_test tcp_server_posix_test time_averaged_stats_test time_test timeout_encoding_test transport_metadata_test |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 32 | echo All tests ran. |
| 33 | |
Jan Tattermusch | 1312666 | 2015-02-12 18:52:07 -0800 | [diff] [blame] | 34 | test_gpr: gpr_cancellable_test gpr_cmdline_test gpr_env_test gpr_file_test gpr_histogram_test gpr_host_port_test gpr_log_test gpr_slice_buffer_test gpr_slice_test gpr_string_test gpr_sync_test gpr_thd_test gpr_time_test gpr_useful_test |
| 35 | echo All tests ran. |
| 36 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 37 | alarm_heap_test.exe: grpc_test_util |
| 38 | echo Building alarm_heap_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 39 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\alarm_heap_test.c |
| 40 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\alarm_heap_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\alarm_heap_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 41 | alarm_heap_test: alarm_heap_test.exe |
| 42 | echo Running alarm_heap_test |
| 43 | $(OUT_DIR)\alarm_heap_test.exe |
| 44 | |
| 45 | alarm_list_test.exe: grpc_test_util |
| 46 | echo Building alarm_list_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 47 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\alarm_list_test.c |
| 48 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\alarm_list_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\alarm_list_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 49 | alarm_list_test: alarm_list_test.exe |
| 50 | echo Running alarm_list_test |
| 51 | $(OUT_DIR)\alarm_list_test.exe |
| 52 | |
| 53 | alarm_test.exe: grpc_test_util |
| 54 | echo Building alarm_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 55 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\alarm_test.c |
| 56 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\alarm_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\alarm_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 57 | alarm_test: alarm_test.exe |
| 58 | echo Running alarm_test |
| 59 | $(OUT_DIR)\alarm_test.exe |
| 60 | |
| 61 | alpn_test.exe: grpc_test_util |
| 62 | echo Building alpn_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 63 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\alpn_test.c |
| 64 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\alpn_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\alpn_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 65 | alpn_test: alpn_test.exe |
| 66 | echo Running alpn_test |
| 67 | $(OUT_DIR)\alpn_test.exe |
| 68 | |
| 69 | bin_encoder_test.exe: grpc_test_util |
| 70 | echo Building bin_encoder_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 71 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\bin_encoder_test.c |
| 72 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\bin_encoder_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\bin_encoder_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 73 | bin_encoder_test: bin_encoder_test.exe |
| 74 | echo Running bin_encoder_test |
| 75 | $(OUT_DIR)\bin_encoder_test.exe |
| 76 | |
| 77 | census_hash_table_test.exe: grpc_test_util |
| 78 | echo Building census_hash_table_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 79 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\hash_table_test.c |
| 80 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_hash_table_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\hash_table_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 81 | census_hash_table_test: census_hash_table_test.exe |
| 82 | echo Running census_hash_table_test |
| 83 | $(OUT_DIR)\census_hash_table_test.exe |
| 84 | |
| 85 | census_statistics_multiple_writers_circular_buffer_test.exe: grpc_test_util |
| 86 | echo Building census_statistics_multiple_writers_circular_buffer_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 87 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\multiple_writers_circular_buffer_test.c |
| 88 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_statistics_multiple_writers_circular_buffer_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\multiple_writers_circular_buffer_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 89 | census_statistics_multiple_writers_circular_buffer_test: census_statistics_multiple_writers_circular_buffer_test.exe |
| 90 | echo Running census_statistics_multiple_writers_circular_buffer_test |
| 91 | $(OUT_DIR)\census_statistics_multiple_writers_circular_buffer_test.exe |
| 92 | |
| 93 | census_statistics_multiple_writers_test.exe: grpc_test_util |
| 94 | echo Building census_statistics_multiple_writers_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 95 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\multiple_writers_test.c |
| 96 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_statistics_multiple_writers_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\multiple_writers_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 97 | census_statistics_multiple_writers_test: census_statistics_multiple_writers_test.exe |
| 98 | echo Running census_statistics_multiple_writers_test |
| 99 | $(OUT_DIR)\census_statistics_multiple_writers_test.exe |
| 100 | |
| 101 | census_statistics_performance_test.exe: grpc_test_util |
| 102 | echo Building census_statistics_performance_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 103 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\performance_test.c |
| 104 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_statistics_performance_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\performance_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 105 | census_statistics_performance_test: census_statistics_performance_test.exe |
| 106 | echo Running census_statistics_performance_test |
| 107 | $(OUT_DIR)\census_statistics_performance_test.exe |
| 108 | |
| 109 | census_statistics_quick_test.exe: grpc_test_util |
| 110 | echo Building census_statistics_quick_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 111 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\quick_test.c |
| 112 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_statistics_quick_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\quick_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 113 | census_statistics_quick_test: census_statistics_quick_test.exe |
| 114 | echo Running census_statistics_quick_test |
| 115 | $(OUT_DIR)\census_statistics_quick_test.exe |
| 116 | |
| 117 | census_statistics_small_log_test.exe: grpc_test_util |
| 118 | echo Building census_statistics_small_log_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 119 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\small_log_test.c |
| 120 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_statistics_small_log_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\small_log_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 121 | census_statistics_small_log_test: census_statistics_small_log_test.exe |
| 122 | echo Running census_statistics_small_log_test |
| 123 | $(OUT_DIR)\census_statistics_small_log_test.exe |
| 124 | |
| 125 | census_stats_store_test.exe: grpc_test_util |
| 126 | echo Building census_stats_store_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 127 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\rpc_stats_test.c |
| 128 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_stats_store_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\rpc_stats_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 129 | census_stats_store_test: census_stats_store_test.exe |
| 130 | echo Running census_stats_store_test |
| 131 | $(OUT_DIR)\census_stats_store_test.exe |
| 132 | |
| 133 | census_stub_test.exe: grpc_test_util |
| 134 | echo Building census_stub_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 135 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\census_stub_test.c |
| 136 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_stub_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\census_stub_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 137 | census_stub_test: census_stub_test.exe |
| 138 | echo Running census_stub_test |
| 139 | $(OUT_DIR)\census_stub_test.exe |
| 140 | |
| 141 | census_trace_store_test.exe: grpc_test_util |
| 142 | echo Building census_trace_store_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 143 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\trace_test.c |
| 144 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_trace_store_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\trace_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 145 | census_trace_store_test: census_trace_store_test.exe |
| 146 | echo Running census_trace_store_test |
| 147 | $(OUT_DIR)\census_trace_store_test.exe |
| 148 | |
| 149 | census_window_stats_test.exe: grpc_test_util |
| 150 | echo Building census_window_stats_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 151 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\statistics\window_stats_test.c |
| 152 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\census_window_stats_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\window_stats_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 153 | census_window_stats_test: census_window_stats_test.exe |
| 154 | echo Running census_window_stats_test |
| 155 | $(OUT_DIR)\census_window_stats_test.exe |
| 156 | |
| 157 | chttp2_status_conversion_test.exe: grpc_test_util |
| 158 | echo Building chttp2_status_conversion_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 159 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\status_conversion_test.c |
| 160 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\chttp2_status_conversion_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\status_conversion_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 161 | chttp2_status_conversion_test: chttp2_status_conversion_test.exe |
| 162 | echo Running chttp2_status_conversion_test |
| 163 | $(OUT_DIR)\chttp2_status_conversion_test.exe |
| 164 | |
| 165 | chttp2_stream_encoder_test.exe: grpc_test_util |
| 166 | echo Building chttp2_stream_encoder_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 167 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\stream_encoder_test.c |
| 168 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\chttp2_stream_encoder_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\stream_encoder_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 169 | chttp2_stream_encoder_test: chttp2_stream_encoder_test.exe |
| 170 | echo Running chttp2_stream_encoder_test |
| 171 | $(OUT_DIR)\chttp2_stream_encoder_test.exe |
| 172 | |
| 173 | chttp2_stream_map_test.exe: grpc_test_util |
| 174 | echo Building chttp2_stream_map_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 175 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\stream_map_test.c |
| 176 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\chttp2_stream_map_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\stream_map_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 177 | chttp2_stream_map_test: chttp2_stream_map_test.exe |
| 178 | echo Running chttp2_stream_map_test |
| 179 | $(OUT_DIR)\chttp2_stream_map_test.exe |
| 180 | |
| 181 | chttp2_transport_end2end_test.exe: grpc_test_util |
| 182 | echo Building chttp2_transport_end2end_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 183 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2_transport_end2end_test.c |
| 184 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\chttp2_transport_end2end_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\chttp2_transport_end2end_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 185 | chttp2_transport_end2end_test: chttp2_transport_end2end_test.exe |
| 186 | echo Running chttp2_transport_end2end_test |
| 187 | $(OUT_DIR)\chttp2_transport_end2end_test.exe |
| 188 | |
| 189 | dualstack_socket_test.exe: grpc_test_util |
| 190 | echo Building dualstack_socket_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 191 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\end2end\dualstack_socket_test.c |
| 192 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\dualstack_socket_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\dualstack_socket_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 193 | dualstack_socket_test: dualstack_socket_test.exe |
| 194 | echo Running dualstack_socket_test |
| 195 | $(OUT_DIR)\dualstack_socket_test.exe |
| 196 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 197 | echo_client.exe: grpc_test_util |
| 198 | echo Building echo_client |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 199 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\echo\client.c |
| 200 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\echo_client.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\client.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 201 | echo_client: echo_client.exe |
| 202 | echo Running echo_client |
| 203 | $(OUT_DIR)\echo_client.exe |
| 204 | |
| 205 | echo_server.exe: grpc_test_util |
| 206 | echo Building echo_server |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 207 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\echo\server.c |
| 208 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\echo_server.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\server.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 209 | echo_server: echo_server.exe |
| 210 | echo Running echo_server |
| 211 | $(OUT_DIR)\echo_server.exe |
| 212 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 213 | echo_test.exe: grpc_test_util |
| 214 | echo Building echo_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 215 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\echo\echo_test.c |
| 216 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\echo_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\echo_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 217 | echo_test: echo_test.exe |
| 218 | echo Running echo_test |
| 219 | $(OUT_DIR)\echo_test.exe |
| 220 | |
| 221 | fd_posix_test.exe: grpc_test_util |
| 222 | echo Building fd_posix_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 223 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\fd_posix_test.c |
| 224 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\fd_posix_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\fd_posix_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 225 | fd_posix_test: fd_posix_test.exe |
| 226 | echo Running fd_posix_test |
| 227 | $(OUT_DIR)\fd_posix_test.exe |
| 228 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 229 | fling_client.exe: grpc_test_util |
| 230 | echo Building fling_client |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 231 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\fling\client.c |
| 232 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\fling_client.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\client.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 233 | fling_client: fling_client.exe |
| 234 | echo Running fling_client |
| 235 | $(OUT_DIR)\fling_client.exe |
| 236 | |
| 237 | fling_server.exe: grpc_test_util |
| 238 | echo Building fling_server |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 239 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\fling\server.c |
| 240 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\fling_server.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\server.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 241 | fling_server: fling_server.exe |
| 242 | echo Running fling_server |
| 243 | $(OUT_DIR)\fling_server.exe |
| 244 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 245 | fling_stream_test.exe: grpc_test_util |
| 246 | echo Building fling_stream_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 247 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\fling\fling_stream_test.c |
| 248 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\fling_stream_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\fling_stream_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 249 | fling_stream_test: fling_stream_test.exe |
| 250 | echo Running fling_stream_test |
| 251 | $(OUT_DIR)\fling_stream_test.exe |
| 252 | |
| 253 | fling_test.exe: grpc_test_util |
| 254 | echo Building fling_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 255 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\fling\fling_test.c |
| 256 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\fling_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\fling_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 257 | fling_test: fling_test.exe |
| 258 | echo Running fling_test |
| 259 | $(OUT_DIR)\fling_test.exe |
| 260 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 261 | gen_hpack_tables.exe: grpc_test_util |
| 262 | echo Building gen_hpack_tables |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 263 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\src\core\transport\chttp2\gen_hpack_tables.c |
| 264 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gen_hpack_tables.exe" Debug\grpc_test_util.lib Debug\gpr.lib Debug\grpc.lib $(LIBS) $(OUT_DIR)\gen_hpack_tables.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 265 | gen_hpack_tables: gen_hpack_tables.exe |
| 266 | echo Running gen_hpack_tables |
| 267 | $(OUT_DIR)\gen_hpack_tables.exe |
| 268 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 269 | gpr_cancellable_test.exe: grpc_test_util |
| 270 | echo Building gpr_cancellable_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 271 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\cancellable_test.c |
| 272 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_cancellable_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\cancellable_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 273 | gpr_cancellable_test: gpr_cancellable_test.exe |
| 274 | echo Running gpr_cancellable_test |
| 275 | $(OUT_DIR)\gpr_cancellable_test.exe |
| 276 | |
| 277 | gpr_cmdline_test.exe: grpc_test_util |
| 278 | echo Building gpr_cmdline_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 279 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\cmdline_test.c |
| 280 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_cmdline_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\cmdline_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 281 | gpr_cmdline_test: gpr_cmdline_test.exe |
| 282 | echo Running gpr_cmdline_test |
| 283 | $(OUT_DIR)\gpr_cmdline_test.exe |
| 284 | |
| 285 | gpr_env_test.exe: grpc_test_util |
| 286 | echo Building gpr_env_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 287 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\env_test.c |
| 288 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_env_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\env_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 289 | gpr_env_test: gpr_env_test.exe |
| 290 | echo Running gpr_env_test |
| 291 | $(OUT_DIR)\gpr_env_test.exe |
| 292 | |
| 293 | gpr_file_test.exe: grpc_test_util |
| 294 | echo Building gpr_file_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 295 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\file_test.c |
| 296 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_file_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\file_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 297 | gpr_file_test: gpr_file_test.exe |
| 298 | echo Running gpr_file_test |
| 299 | $(OUT_DIR)\gpr_file_test.exe |
| 300 | |
| 301 | gpr_histogram_test.exe: grpc_test_util |
| 302 | echo Building gpr_histogram_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 303 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\histogram_test.c |
| 304 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_histogram_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\histogram_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 305 | gpr_histogram_test: gpr_histogram_test.exe |
| 306 | echo Running gpr_histogram_test |
| 307 | $(OUT_DIR)\gpr_histogram_test.exe |
| 308 | |
| 309 | gpr_host_port_test.exe: grpc_test_util |
| 310 | echo Building gpr_host_port_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 311 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\host_port_test.c |
| 312 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_host_port_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\host_port_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 313 | gpr_host_port_test: gpr_host_port_test.exe |
| 314 | echo Running gpr_host_port_test |
| 315 | $(OUT_DIR)\gpr_host_port_test.exe |
| 316 | |
| 317 | gpr_log_test.exe: grpc_test_util |
| 318 | echo Building gpr_log_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 319 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\log_test.c |
| 320 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_log_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\log_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 321 | gpr_log_test: gpr_log_test.exe |
| 322 | echo Running gpr_log_test |
| 323 | $(OUT_DIR)\gpr_log_test.exe |
| 324 | |
| 325 | gpr_slice_buffer_test.exe: grpc_test_util |
| 326 | echo Building gpr_slice_buffer_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 327 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\slice_buffer_test.c |
| 328 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_slice_buffer_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\slice_buffer_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 329 | gpr_slice_buffer_test: gpr_slice_buffer_test.exe |
| 330 | echo Running gpr_slice_buffer_test |
| 331 | $(OUT_DIR)\gpr_slice_buffer_test.exe |
| 332 | |
| 333 | gpr_slice_test.exe: grpc_test_util |
| 334 | echo Building gpr_slice_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 335 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\slice_test.c |
| 336 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_slice_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\slice_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 337 | gpr_slice_test: gpr_slice_test.exe |
| 338 | echo Running gpr_slice_test |
| 339 | $(OUT_DIR)\gpr_slice_test.exe |
| 340 | |
| 341 | gpr_string_test.exe: grpc_test_util |
| 342 | echo Building gpr_string_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 343 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\string_test.c |
| 344 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_string_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\string_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 345 | gpr_string_test: gpr_string_test.exe |
| 346 | echo Running gpr_string_test |
| 347 | $(OUT_DIR)\gpr_string_test.exe |
| 348 | |
| 349 | gpr_sync_test.exe: grpc_test_util |
| 350 | echo Building gpr_sync_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 351 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\sync_test.c |
| 352 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_sync_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\sync_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 353 | gpr_sync_test: gpr_sync_test.exe |
| 354 | echo Running gpr_sync_test |
| 355 | $(OUT_DIR)\gpr_sync_test.exe |
| 356 | |
| 357 | gpr_thd_test.exe: grpc_test_util |
| 358 | echo Building gpr_thd_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 359 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\thd_test.c |
| 360 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_thd_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\thd_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 361 | gpr_thd_test: gpr_thd_test.exe |
| 362 | echo Running gpr_thd_test |
| 363 | $(OUT_DIR)\gpr_thd_test.exe |
| 364 | |
| 365 | gpr_time_test.exe: grpc_test_util |
| 366 | echo Building gpr_time_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 367 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\time_test.c |
| 368 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_time_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\time_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 369 | gpr_time_test: gpr_time_test.exe |
| 370 | echo Running gpr_time_test |
| 371 | $(OUT_DIR)\gpr_time_test.exe |
| 372 | |
| 373 | gpr_useful_test.exe: grpc_test_util |
| 374 | echo Building gpr_useful_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 375 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\useful_test.c |
| 376 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\gpr_useful_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\useful_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 377 | gpr_useful_test: gpr_useful_test.exe |
| 378 | echo Running gpr_useful_test |
| 379 | $(OUT_DIR)\gpr_useful_test.exe |
| 380 | |
| 381 | grpc_base64_test.exe: grpc_test_util |
| 382 | echo Building grpc_base64_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 383 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\base64_test.c |
| 384 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_base64_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\base64_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 385 | grpc_base64_test: grpc_base64_test.exe |
| 386 | echo Running grpc_base64_test |
| 387 | $(OUT_DIR)\grpc_base64_test.exe |
| 388 | |
| 389 | grpc_byte_buffer_reader_test.exe: grpc_test_util |
| 390 | echo Building grpc_byte_buffer_reader_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 391 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\surface\byte_buffer_reader_test.c |
| 392 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_byte_buffer_reader_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\byte_buffer_reader_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 393 | grpc_byte_buffer_reader_test: grpc_byte_buffer_reader_test.exe |
| 394 | echo Running grpc_byte_buffer_reader_test |
| 395 | $(OUT_DIR)\grpc_byte_buffer_reader_test.exe |
| 396 | |
| 397 | grpc_channel_stack_test.exe: grpc_test_util |
| 398 | echo Building grpc_channel_stack_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 399 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\channel\channel_stack_test.c |
| 400 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_channel_stack_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\channel_stack_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 401 | grpc_channel_stack_test: grpc_channel_stack_test.exe |
| 402 | echo Running grpc_channel_stack_test |
| 403 | $(OUT_DIR)\grpc_channel_stack_test.exe |
| 404 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 405 | grpc_completion_queue_benchmark.exe: grpc_test_util |
| 406 | echo Building grpc_completion_queue_benchmark |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 407 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\surface\completion_queue_benchmark.c |
| 408 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_completion_queue_benchmark.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\completion_queue_benchmark.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 409 | grpc_completion_queue_benchmark: grpc_completion_queue_benchmark.exe |
| 410 | echo Running grpc_completion_queue_benchmark |
| 411 | $(OUT_DIR)\grpc_completion_queue_benchmark.exe |
| 412 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 413 | grpc_completion_queue_test.exe: grpc_test_util |
| 414 | echo Building grpc_completion_queue_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 415 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\surface\completion_queue_test.c |
| 416 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_completion_queue_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\completion_queue_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 417 | grpc_completion_queue_test: grpc_completion_queue_test.exe |
| 418 | echo Running grpc_completion_queue_test |
| 419 | $(OUT_DIR)\grpc_completion_queue_test.exe |
| 420 | |
Nicolas "Pixel" Noble | b8f5f1b | 2015-02-21 19:03:00 +0100 | [diff] [blame] | 421 | grpc_create_jwt.exe: grpc_test_util |
| 422 | echo Building grpc_create_jwt |
| 423 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\create_jwt.c |
| 424 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_create_jwt.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\create_jwt.obj |
| 425 | grpc_create_jwt: grpc_create_jwt.exe |
| 426 | echo Running grpc_create_jwt |
| 427 | $(OUT_DIR)\grpc_create_jwt.exe |
| 428 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 429 | grpc_credentials_test.exe: grpc_test_util |
| 430 | echo Building grpc_credentials_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 431 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\credentials_test.c |
| 432 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_credentials_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\credentials_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 433 | grpc_credentials_test: grpc_credentials_test.exe |
| 434 | echo Running grpc_credentials_test |
| 435 | $(OUT_DIR)\grpc_credentials_test.exe |
| 436 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 437 | grpc_fetch_oauth2.exe: grpc_test_util |
| 438 | echo Building grpc_fetch_oauth2 |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 439 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\fetch_oauth2.c |
| 440 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_fetch_oauth2.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\fetch_oauth2.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 441 | grpc_fetch_oauth2: grpc_fetch_oauth2.exe |
| 442 | echo Running grpc_fetch_oauth2 |
| 443 | $(OUT_DIR)\grpc_fetch_oauth2.exe |
| 444 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 445 | grpc_json_token_test.exe: grpc_test_util |
| 446 | echo Building grpc_json_token_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 447 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\json_token_test.c |
| 448 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_json_token_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\json_token_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 449 | grpc_json_token_test: grpc_json_token_test.exe |
| 450 | echo Running grpc_json_token_test |
| 451 | $(OUT_DIR)\grpc_json_token_test.exe |
| 452 | |
Julien Boeuf | c66f2a8 | 2015-02-23 13:00:36 -0800 | [diff] [blame^] | 453 | grpc_print_google_default_creds_token.exe: grpc_test_util |
| 454 | echo Building grpc_print_google_default_creds_token |
| 455 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\print_google_default_creds_token.c |
| 456 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_print_google_default_creds_token.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\print_google_default_creds_token.obj |
| 457 | grpc_print_google_default_creds_token: grpc_print_google_default_creds_token.exe |
| 458 | echo Running grpc_print_google_default_creds_token |
| 459 | $(OUT_DIR)\grpc_print_google_default_creds_token.exe |
Julien Boeuf | cd9b1c8 | 2015-02-20 17:40:41 -0800 | [diff] [blame] | 460 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 461 | grpc_stream_op_test.exe: grpc_test_util |
| 462 | echo Building grpc_stream_op_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 463 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\stream_op_test.c |
| 464 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\grpc_stream_op_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\stream_op_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 465 | grpc_stream_op_test: grpc_stream_op_test.exe |
| 466 | echo Running grpc_stream_op_test |
| 467 | $(OUT_DIR)\grpc_stream_op_test.exe |
| 468 | |
| 469 | hpack_parser_test.exe: grpc_test_util |
| 470 | echo Building hpack_parser_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 471 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\hpack_parser_test.c |
| 472 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\hpack_parser_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\hpack_parser_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 473 | hpack_parser_test: hpack_parser_test.exe |
| 474 | echo Running hpack_parser_test |
| 475 | $(OUT_DIR)\hpack_parser_test.exe |
| 476 | |
| 477 | hpack_table_test.exe: grpc_test_util |
| 478 | echo Building hpack_table_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 479 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\hpack_table_test.c |
| 480 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\hpack_table_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\hpack_table_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 481 | hpack_table_test: hpack_table_test.exe |
| 482 | echo Running hpack_table_test |
| 483 | $(OUT_DIR)\hpack_table_test.exe |
| 484 | |
| 485 | httpcli_format_request_test.exe: grpc_test_util |
| 486 | echo Building httpcli_format_request_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 487 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\httpcli\format_request_test.c |
| 488 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\httpcli_format_request_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\format_request_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 489 | httpcli_format_request_test: httpcli_format_request_test.exe |
| 490 | echo Running httpcli_format_request_test |
| 491 | $(OUT_DIR)\httpcli_format_request_test.exe |
| 492 | |
| 493 | httpcli_parser_test.exe: grpc_test_util |
| 494 | echo Building httpcli_parser_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 495 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\httpcli\parser_test.c |
| 496 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\httpcli_parser_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\parser_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 497 | httpcli_parser_test: httpcli_parser_test.exe |
| 498 | echo Running httpcli_parser_test |
| 499 | $(OUT_DIR)\httpcli_parser_test.exe |
| 500 | |
| 501 | httpcli_test.exe: grpc_test_util |
| 502 | echo Building httpcli_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 503 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\httpcli\httpcli_test.c |
| 504 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\httpcli_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\httpcli_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 505 | httpcli_test: httpcli_test.exe |
| 506 | echo Running httpcli_test |
| 507 | $(OUT_DIR)\httpcli_test.exe |
| 508 | |
Craig Tiller | 16a6ea6 | 2015-02-20 09:08:54 -0800 | [diff] [blame] | 509 | interop_test.exe: grpc_test_util |
| 510 | echo Building interop_test |
| 511 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\cpp\interop\interop_test.c |
| 512 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\interop_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\interop_test.obj |
| 513 | interop_test: interop_test.exe |
| 514 | echo Running interop_test |
| 515 | $(OUT_DIR)\interop_test.exe |
| 516 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 517 | json_rewrite.exe: grpc_test_util |
| 518 | echo Building json_rewrite |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 519 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\json\json_rewrite.c |
| 520 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\json_rewrite.exe" Debug\grpc.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\json_rewrite.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 521 | json_rewrite: json_rewrite.exe |
| 522 | echo Running json_rewrite |
| 523 | $(OUT_DIR)\json_rewrite.exe |
| 524 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 525 | json_rewrite_test.exe: grpc_test_util |
| 526 | echo Building json_rewrite_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 527 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\json\json_rewrite_test.c |
| 528 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\json_rewrite_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\json_rewrite_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 529 | json_rewrite_test: json_rewrite_test.exe |
| 530 | echo Running json_rewrite_test |
| 531 | $(OUT_DIR)\json_rewrite_test.exe |
| 532 | |
| 533 | json_test.exe: grpc_test_util |
| 534 | echo Building json_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 535 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\json\json_test.c |
| 536 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\json_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\json_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 537 | json_test: json_test.exe |
| 538 | echo Running json_test |
| 539 | $(OUT_DIR)\json_test.exe |
| 540 | |
| 541 | lame_client_test.exe: grpc_test_util |
| 542 | echo Building lame_client_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 543 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\surface\lame_client_test.c |
| 544 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\lame_client_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\lame_client_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 545 | lame_client_test: lame_client_test.exe |
| 546 | echo Running lame_client_test |
| 547 | $(OUT_DIR)\lame_client_test.exe |
| 548 | |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 549 | low_level_ping_pong_benchmark.exe: grpc_test_util |
| 550 | echo Building low_level_ping_pong_benchmark |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 551 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\network_benchmarks\low_level_ping_pong.c |
| 552 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\low_level_ping_pong_benchmark.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\low_level_ping_pong.obj |
Jan Tattermusch | eca6547 | 2015-02-12 19:29:26 -0800 | [diff] [blame] | 553 | low_level_ping_pong_benchmark: low_level_ping_pong_benchmark.exe |
| 554 | echo Running low_level_ping_pong_benchmark |
| 555 | $(OUT_DIR)\low_level_ping_pong_benchmark.exe |
| 556 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 557 | message_compress_test.exe: grpc_test_util |
| 558 | echo Building message_compress_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 559 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\compression\message_compress_test.c |
| 560 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\message_compress_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\message_compress_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 561 | message_compress_test: message_compress_test.exe |
| 562 | echo Running message_compress_test |
| 563 | $(OUT_DIR)\message_compress_test.exe |
| 564 | |
| 565 | metadata_buffer_test.exe: grpc_test_util |
| 566 | echo Building metadata_buffer_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 567 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\channel\metadata_buffer_test.c |
| 568 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\metadata_buffer_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\metadata_buffer_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 569 | metadata_buffer_test: metadata_buffer_test.exe |
| 570 | echo Running metadata_buffer_test |
| 571 | $(OUT_DIR)\metadata_buffer_test.exe |
| 572 | |
Craig Tiller | 35108f6 | 2015-02-17 11:24:15 -0800 | [diff] [blame] | 573 | multi_init_test.exe: grpc_test_util |
| 574 | echo Building multi_init_test |
| 575 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\surface\multi_init_test.c |
| 576 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\multi_init_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\multi_init_test.obj |
| 577 | multi_init_test: multi_init_test.exe |
| 578 | echo Running multi_init_test |
| 579 | $(OUT_DIR)\multi_init_test.exe |
| 580 | |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 581 | murmur_hash_test.exe: grpc_test_util |
| 582 | echo Building murmur_hash_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 583 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\murmur_hash_test.c |
| 584 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\murmur_hash_test.exe" Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\murmur_hash_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 585 | murmur_hash_test: murmur_hash_test.exe |
| 586 | echo Running murmur_hash_test |
| 587 | $(OUT_DIR)\murmur_hash_test.exe |
| 588 | |
| 589 | no_server_test.exe: grpc_test_util |
| 590 | echo Building no_server_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 591 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\end2end\no_server_test.c |
| 592 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\no_server_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\no_server_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 593 | no_server_test: no_server_test.exe |
| 594 | echo Running no_server_test |
| 595 | $(OUT_DIR)\no_server_test.exe |
| 596 | |
| 597 | poll_kick_posix_test.exe: grpc_test_util |
| 598 | echo Building poll_kick_posix_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 599 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\poll_kick_posix_test.c |
| 600 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\poll_kick_posix_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\poll_kick_posix_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 601 | poll_kick_posix_test: poll_kick_posix_test.exe |
| 602 | echo Running poll_kick_posix_test |
| 603 | $(OUT_DIR)\poll_kick_posix_test.exe |
| 604 | |
| 605 | resolve_address_test.exe: grpc_test_util |
| 606 | echo Building resolve_address_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 607 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\resolve_address_test.c |
| 608 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\resolve_address_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\resolve_address_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 609 | resolve_address_test: resolve_address_test.exe |
| 610 | echo Running resolve_address_test |
| 611 | $(OUT_DIR)\resolve_address_test.exe |
| 612 | |
| 613 | secure_endpoint_test.exe: grpc_test_util |
| 614 | echo Building secure_endpoint_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 615 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\security\secure_endpoint_test.c |
| 616 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\secure_endpoint_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\secure_endpoint_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 617 | secure_endpoint_test: secure_endpoint_test.exe |
| 618 | echo Running secure_endpoint_test |
| 619 | $(OUT_DIR)\secure_endpoint_test.exe |
| 620 | |
| 621 | sockaddr_utils_test.exe: grpc_test_util |
| 622 | echo Building sockaddr_utils_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 623 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\sockaddr_utils_test.c |
| 624 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\sockaddr_utils_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\sockaddr_utils_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 625 | sockaddr_utils_test: sockaddr_utils_test.exe |
| 626 | echo Running sockaddr_utils_test |
| 627 | $(OUT_DIR)\sockaddr_utils_test.exe |
| 628 | |
| 629 | tcp_client_posix_test.exe: grpc_test_util |
| 630 | echo Building tcp_client_posix_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 631 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\tcp_client_posix_test.c |
| 632 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\tcp_client_posix_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\tcp_client_posix_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 633 | tcp_client_posix_test: tcp_client_posix_test.exe |
| 634 | echo Running tcp_client_posix_test |
| 635 | $(OUT_DIR)\tcp_client_posix_test.exe |
| 636 | |
| 637 | tcp_posix_test.exe: grpc_test_util |
| 638 | echo Building tcp_posix_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 639 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\tcp_posix_test.c |
| 640 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\tcp_posix_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\tcp_posix_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 641 | tcp_posix_test: tcp_posix_test.exe |
| 642 | echo Running tcp_posix_test |
| 643 | $(OUT_DIR)\tcp_posix_test.exe |
| 644 | |
| 645 | tcp_server_posix_test.exe: grpc_test_util |
| 646 | echo Building tcp_server_posix_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 647 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\tcp_server_posix_test.c |
| 648 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\tcp_server_posix_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\tcp_server_posix_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 649 | tcp_server_posix_test: tcp_server_posix_test.exe |
| 650 | echo Running tcp_server_posix_test |
| 651 | $(OUT_DIR)\tcp_server_posix_test.exe |
| 652 | |
| 653 | time_averaged_stats_test.exe: grpc_test_util |
| 654 | echo Building time_averaged_stats_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 655 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\iomgr\time_averaged_stats_test.c |
| 656 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\time_averaged_stats_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\time_averaged_stats_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 657 | time_averaged_stats_test: time_averaged_stats_test.exe |
| 658 | echo Running time_averaged_stats_test |
| 659 | $(OUT_DIR)\time_averaged_stats_test.exe |
| 660 | |
| 661 | time_test.exe: grpc_test_util |
| 662 | echo Building time_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 663 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\support\time_test.c |
| 664 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\time_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\time_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 665 | time_test: time_test.exe |
| 666 | echo Running time_test |
| 667 | $(OUT_DIR)\time_test.exe |
| 668 | |
| 669 | timeout_encoding_test.exe: grpc_test_util |
| 670 | echo Building timeout_encoding_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 671 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\chttp2\timeout_encoding_test.c |
| 672 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\timeout_encoding_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\timeout_encoding_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 673 | timeout_encoding_test: timeout_encoding_test.exe |
| 674 | echo Running timeout_encoding_test |
| 675 | $(OUT_DIR)\timeout_encoding_test.exe |
| 676 | |
| 677 | transport_metadata_test.exe: grpc_test_util |
| 678 | echo Building transport_metadata_test |
Jan Tattermusch | a2ad558 | 2015-02-12 19:44:35 -0800 | [diff] [blame] | 679 | $(CC) $(CFLAGS) /Fo:$(OUT_DIR)\ ..\..\test\core\transport\metadata_test.c |
| 680 | $(LINK) $(LFLAGS) /OUT:"$(OUT_DIR)\transport_metadata_test.exe" Debug\grpc_test_util.lib Debug\grpc.lib Debug\gpr_test_util.lib Debug\gpr.lib $(LIBS) $(OUT_DIR)\metadata_test.obj |
Jan Tattermusch | 451a227 | 2015-02-12 18:34:50 -0800 | [diff] [blame] | 681 | transport_metadata_test: transport_metadata_test.exe |
| 682 | echo Running transport_metadata_test |
| 683 | $(OUT_DIR)\transport_metadata_test.exe |
| 684 | |