From: Mark Slee Date: Thu, 12 Oct 2006 04:04:11 +0000 (+0000) Subject: Rename test files to .cpp instead of .cc X-Git-Tag: 0.2.0~1642 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=a6b48ea7ce9d3925b7e4715d86a5b391c50a7166;p=common%2Fthrift.git Rename test files to .cpp instead of .cc Reviewed By: aditya git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664830 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/cpp/Makefile.thrift b/test/cpp/Makefile.thrift index 4fdc4a8c..d8ef54db 100644 --- a/test/cpp/Makefile.thrift +++ b/test/cpp/Makefile.thrift @@ -42,16 +42,16 @@ stubs: ../ThriftTest.thrift $(THRIFT) --cpp ../ThriftTest.thrift server-debug: stubs - g++ -o TestServer $(DCFL) src/TestServer.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc + g++ -o TestServer $(DCFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp client-debug: stubs - g++ -o TestClient $(DCFL) src/TestClient.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc + g++ -o TestClient $(DCFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp server: stubs - g++ -o TestServer $(CFL) src/TestServer.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc + g++ -o TestServer $(CFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp client: stubs - g++ -o TestClient $(CFL) src/TestClient.cc ./gen-cpp/ThriftTest.cc ./gen-cpp/ThriftTest_types.cc + g++ -o TestClient $(CFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp clean: rm -fr TestServer TestClient gen-cpp diff --git a/test/cpp/src/TestClient.cc b/test/cpp/src/TestClient.cpp similarity index 100% rename from test/cpp/src/TestClient.cc rename to test/cpp/src/TestClient.cpp diff --git a/test/cpp/src/TestServer.cc b/test/cpp/src/TestServer.cpp similarity index 100% rename from test/cpp/src/TestServer.cc rename to test/cpp/src/TestServer.cpp