From c56f176440c04b1a633a6d58048b07c3f9346620 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Tue, 29 Oct 2024 21:36:44 +0800 Subject: [PATCH] Rename file name to fit case insensitive file system. (#1444) Rename file to avoid clone issue in case insensitive file system. This caused auto-cherry-pick don't work. --- tests/Makefile.am | 2 +- tests/{testclient.cpp => testclient_main.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{testclient.cpp => testclient_main.cpp} (100%) diff --git a/tests/Makefile.am b/tests/Makefile.am index b86eb095b..882ef26da 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -21,7 +21,7 @@ tests_LDADD = -lhiredis -lswsscommon -lpthread \ $(top_srcdir)/lib/libsairedis.la $(top_srcdir)/syncd/libSyncd.a \ -L$(top_srcdir)/meta/.libs -lsaimetadata -lsaimeta -lzmq $(CODE_COVERAGE_LIBS) -testclient_SOURCES = TestClient.cpp testclient.cpp +testclient_SOURCES = TestClient.cpp testclient_main.cpp testclient_CXXFLAGS = $(DBGFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS_COMMON) testclient_LDADD = -lhiredis -lswsscommon -lpthread \ $(top_srcdir)/lib/libsairedis.la $(top_srcdir)/syncd/libSyncd.a \ diff --git a/tests/testclient.cpp b/tests/testclient_main.cpp similarity index 100% rename from tests/testclient.cpp rename to tests/testclient_main.cpp