From a6b48ea7ce9d3925b7e4715d86a5b391c50a7166 Mon Sep 17 00:00:00 2001 From: Mark Slee Date: Thu, 12 Oct 2006 04:04:11 +0000 Subject: [PATCH] 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 --- test/cpp/Makefile.thrift | 8 ++++---- test/cpp/src/{TestClient.cc => TestClient.cpp} | 0 test/cpp/src/{TestServer.cc => TestServer.cpp} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename test/cpp/src/{TestClient.cc => TestClient.cpp} (100%) rename test/cpp/src/{TestServer.cc => TestServer.cpp} (100%) 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 -- 2.17.1