Skip to content

Commit

Permalink
Merge pull request #283 from nlrcomcast/master
Browse files Browse the repository at this point in the history
Added unit test cases for FR_CloudSyncCheck
  • Loading branch information
sadhyama authored Nov 28, 2024
2 parents 792c3e8 + 34001f0 commit 24a1969
Show file tree
Hide file tree
Showing 4 changed files with 341 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: mkdir build

- name: Get Sonarcloud Binaries
uses: xmidt-org/sonarcloud-installer-action@v1
uses: sonarsource/sonarcloud-github-c-cpp@v2
with:
working-directory: build

Expand All @@ -64,7 +64,7 @@ jobs:
mkdir _install
mkdir _install/lib
cp ${RBUS_INSTALL_DIR}/usr/lib/librbus* _install/lib
build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output make all test
build-wrapper-linux-x86-64 --out-dir bw-output make all test
# ARGS=-VV make test # use this version for debugging

Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ ExternalProject_Add(msgpack
CMAKE_ARGS += -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}
-DMSGPACK_ENABLE_CXX=OFF
-DMSGPACK_BUILD_EXAMPLES=OFF
-DMSGPACK_BUILD_TESTS=OFF
)
add_library(libmsgpack STATIC SHARED IMPORTED)
add_dependencies(libmsgpack msgpack)
Expand Down
2 changes: 1 addition & 1 deletion source/broadband/webpa_notification.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static NotifyMsg *notifyMsgQ = NULL;
void (*notifyCbFn)(NotifyData*) = NULL;
static WebPaCfg webPaCfg;
char deviceMAC[32]={'\0'};
static int g_syncRetryThreadStarted = 0;
int g_syncRetryThreadStarted = 0;

//This flag is used to avoid sync notification retry when param notification is already in progress.
int g_syncNotifyInProgress = 0;
Expand Down
Loading

0 comments on commit 24a1969

Please sign in to comment.