diff --git a/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfoshapc/signature/openharmony_sx.p7b b/appexecfwk/bundle_standard/bundlemanager/sceneProject/bmsgetinfoshapc/signature/openharmony_sx.p7b old mode 100755 new mode 100644 diff --git a/communication_lite/lwip_posix/src/ActsLwipTest.cpp b/communication_lite/lwip_posix/src/ActsLwipTest.cpp index 04ccdb7a513bea6f46a29e849a00d4cf7db894a0..31e2033a701b95468d08a3e556e4ca97f5d96e69 100755 --- a/communication_lite/lwip_posix/src/ActsLwipTest.cpp +++ b/communication_lite/lwip_posix/src/ActsLwipTest.cpp @@ -21,6 +21,7 @@ #include #include #include +#include #include "securec.h" using namespace std; @@ -41,7 +42,11 @@ static pthread_barrier_t g_barrier; class ActsLwipTest : public testing::Test { protected: // SetUpTestCase: Testsuit setup, run before 1st testcase - static void SetUpTestCase(void) {} + static void SetUpTestCase(void) + { + // Ignore SIGPIPE Signals + signal(SIGPIPE, SIG_IGN); + } // TearDownTestCase: Testsuit teardown, run after last testcase static void TearDownTestCase(void) {} // Testcase setup