From: Mark Slee Date: Thu, 12 Oct 2006 04:05:23 +0000 (+0000) Subject: Change thrift stress test to .cpp file extension X-Git-Tag: 0.2.0~1641 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=9a079272b2defe1a488b93ffe71511ed6bc15808;p=common%2Fthrift.git Change thrift stress test to .cpp file extension Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664831 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/cpp/Makefile.stress b/test/cpp/Makefile.stress index cbe8bb1a..804f5760 100644 --- a/test/cpp/Makefile.stress +++ b/test/cpp/Makefile.stress @@ -43,10 +43,10 @@ stubs: ../StressTest.thrift $(THRIFT) --cpp --php ../StressTest.thrift stress-test-debug: stubs - g++ -o stress-test $(DCFL) src/main.cc ./gen-cpp/Service.cc gen-cpp/StressTest_types.cc + g++ -o stress-test $(DCFL) src/main.cpp ./gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp stress-test: stubs - g++ -o stress-test $(CFL) src/main.cc ./gen-cpp/Service.cc gen-cpp/StressTest_types.cc + g++ -o stress-test $(CFL) src/main.cpp ./gen-cpp/Service.cpp gen-cpp/StressTest_types.cpp clean: rm -fr stress-test gen-cpp diff --git a/test/cpp/src/main.cc b/test/cpp/src/main.cpp similarity index 100% rename from test/cpp/src/main.cc rename to test/cpp/src/main.cpp