Skip to content

Commit 07fd812

Browse files
authored
RDK-57440: Enable HdcpProfile for contract test (#132)
Reason for Change: Added for CT Test Procedure: Check for regressions Risks: Low Priority: P1
1 parent cc36a87 commit 07fd812

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/L2-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: L2-tests
22

33
#enable the workflow incase of any plugin/testcase changes
4+
#Add "Tests/L2Tests" subdirectory in CMakeLists.txt, when enabling L2Tests
45
on:
56
workflow_dispatch:
67

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ string(TOLOWER ${NAMESPACE} STORAGE_DIRECTORY)
3737
include(CmakeHelperFunctions)
3838

3939
if(RDK_SERVICE_L2_TEST)
40-
add_subdirectory(Tests/L2Tests)
40+
# add_subdirectory(Tests/L2Tests)
4141
endif()
4242

4343
if(RDK_SERVICES_L1_TEST)

HdcpProfile/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ if (RDK_SERVICE_L2_TEST)
7575
find_library(TESTMOCKLIB_LIBRARIES NAMES TestMocklib)
7676
if (TESTMOCKLIB_LIBRARIES)
7777
message ("linking mock libraries ${TESTMOCKLIB_LIBRARIES} library")
78-
target_link_libraries(${MODULE_NAME} PRIVATE ${TESTMOCKLIB_LIBRARIES})
78+
target_link_libraries(${PLUGIN_IMPLEMENTATION} PRIVATE ${TESTMOCKLIB_LIBRARIES})
7979
else (TESTMOCKLIB_LIBRARIES)
8080
message ("Require ${TESTMOCKLIB_LIBRARIES} library")
8181
endif (TESTMOCKLIB_LIBRARIES)

0 commit comments

Comments
 (0)