Skip to content

Commit

Permalink
[Cellular Library] Align folder structure with other library. (#38)
Browse files Browse the repository at this point in the history
* [Cellular Library] Fix build warning message in unit test

* [Cellular Library] Correct memory estimation.

* [Cellular Library] The changes for reorg folder structure.

* [Cellular Library] Changes for memory estimation and docs

* [Cellular Library] Move structure _cellularCommContext from cellular_platform.h to cellular_pktio_utest.c

* [Cellular Library] Prevent wrong return status due to null paramter.

* Update test/cbmc/proofs/Cellular_ATGetNextTok/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATGetSpecificNextTok/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATHexStrToHex/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATIsPrefixPresent/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATIsStrDigit/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATStrtoi/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATcheckErrorCode/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_CommonATCommandRaw/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_CommonCleanup/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/_Cellular_GetSocketData/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemoveAllDoubleQuote/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemoveAllWhiteSpaces/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemoveLeadingWhiteSpaces/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemoveOutermostDoubleQuote/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemovePrefix/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATRemoveTrailingWhiteSpaces/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATStrDup/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* Update test/cbmc/proofs/Cellular_ATStrStartWith/Makefile

Co-authored-by: Paul Bartell <[email protected]>

* [Cellular Library] Add .gitattribute to prevent CRLF from committing.

Co-authored-by: Paul Bartell <[email protected]>
  • Loading branch information
andysun2015 and paulbartell authored Sep 8, 2021
1 parent 2ca3253 commit cefe8c6
Show file tree
Hide file tree
Showing 92 changed files with 215 additions and 257 deletions.
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=lf
21 changes: 11 additions & 10 deletions .github/memory_statistics_config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"lib_name" : "cellularLibrary",
"src": [
"common/src/cellular_3gpp_api.c",
"common/src/cellular_3gpp_urc_handler.c",
"common/src/cellular_at_core.c",
"common/src/cellular_common_api.c",
"common/src/cellular_common.c",
"common/src/cellular_pkthandler.c",
"common/src/cellular_pktio.c"
"source/cellular_3gpp_api.c",
"source/cellular_3gpp_urc_handler.c",
"source/cellular_at_core.c",
"source/cellular_common_api.c",
"source/cellular_common.c",
"source/cellular_pkthandler.c",
"source/cellular_pktio.c"
],
"include": [
"include",
"common/include",
"common/include/private",
"source/include",
"source/include/common",
"source/include/private",
"source/interface",
"test/unit-test"
],
"compiler_flags": [
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
uses: FreeRTOS/CI-CD-Github-Actions/complexity@main
with:
path: ./
source_path: common
doxygen:
runs-on: ubuntu-latest
steps:
Expand Down
59 changes: 0 additions & 59 deletions CONTRIBUTING.md

This file was deleted.

8 changes: 5 additions & 3 deletions docs/doxygen/config.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -892,8 +892,9 @@ WARN_LOGFILE =
# Note: If this tag is empty the current directory is searched.

INPUT = ./docs/doxygen \
./include \
./common/include
./source/include \
./source/include/common \
./source/interface

# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
Expand Down Expand Up @@ -973,7 +974,8 @@ EXCLUDE_SYMBOLS =
# command).

EXAMPLE_PATH = docs/doxygen/include \
common/include
./source/include \
./source/include/common \

# If the value of the EXAMPLE_PATH tag contains directories, you can use the
# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion common/src/cellular_pktio.c → source/cellular_pktio.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ static _atRespType_t _getMsgType( const CellularContext_t * pContext,
/* Check if prefix exist in pLine. */
( void ) Cellular_ATIsPrefixPresent( pLine, &inputWithPrefix );

if( inputWithPrefix == true )
if( ( inputWithPrefix == true ) && ( pRespPrefix != NULL ) )
{
/* Check if SRC prefix exist in pLine. */
atStatus = Cellular_ATStrStartWith( pLine, pRespPrefix, &inputWithSrcPrefix );
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 6 additions & 5 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,11 @@ set( CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib )
# ===================================== Coverity Analysis Configuration =================================================

# Set the source path and include path
set( CELLULAR_COMMON_SOURCE ${MODULE_ROOT_DIR}/common/src )
set( CELLULAR_INCLUDE_DIRS ${MODULE_ROOT_DIR}/include )
set( CELLULAR_COMMON_INCLUDE_DIRS ${MODULE_ROOT_DIR}/common/include )
set( CELLULAR_COMMON_INCLUDE_PRIVATE_DIRS ${MODULE_ROOT_DIR}/common/include/private )
set( CELLULAR_COMMON_SOURCE ${MODULE_ROOT_DIR}/source )
set( CELLULAR_INCLUDE_DIRS ${CELLULAR_COMMON_SOURCE}/include )
set( CELLULAR_COMMON_INCLUDE_DIRS ${CELLULAR_INCLUDE_DIRS}/common )
set( CELLULAR_COMMON_INCLUDE_PRIVATE_DIRS ${CELLULAR_INCLUDE_DIRS}/private )
set( CELLULAR_INTERFACE_INCLUDE_DIRS ${CELLULAR_COMMON_SOURCE}/interface )
set( CELLULAR_TEST_DIRS ${MODULE_ROOT_DIR}/test/unit-test )

# Target for Coverity analysis that builds the library.
Expand All @@ -52,7 +53,7 @@ add_library( coverity_analysis
target_compile_definitions( coverity_analysis PUBLIC CELLULAR_DO_NOT_USE_CUSTOM_CONFIG=1 )

# Cellular include path.
target_include_directories( coverity_analysis PUBLIC ${CELLULAR_COMMON_INCLUDE_DIRS} ${CELLULAR_INCLUDE_DIRS} ${CELLULAR_TEST_DIRS})
target_include_directories( coverity_analysis PUBLIC ${CELLULAR_COMMON_INCLUDE_DIRS} ${CELLULAR_INCLUDE_DIRS} ${CELLULAR_INTERFACE_INCLUDE_DIRS} ${CELLULAR_TEST_DIRS})

# Cellular private include path.
target_include_directories( coverity_analysis PRIVATE ${CELLULAR_COMMON_INCLUDE_PRIVATE_DIRS} )
Expand Down
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATGetNextTok/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ REMOVE_FUNCTION_BODY += Cellular_ATGetSpecificNextTok
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATGetSpecificNextTok/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strtok.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c


include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATHexStrToHex/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATIsPrefixPresent/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strchr.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATIsStrDigit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATRemoveAllDoubleQuote/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATRemoveAllWhiteSpaces/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATRemoveLeadingWhiteSpaces/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ UNWINDSET += Cellular_ATRemoveLeadingWhiteSpaces.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATRemovePrefix/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strchr.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ UNWINDSET += strlen.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATStrDup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strtok.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c


include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATStrStartWith/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strchr.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATStrtoi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ UNWINDSET += strtol.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/test/cbmc/stubs/strtol.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_ATcheckErrorCode/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/stubs/strchr.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_at_core.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_at_core.c

include ../Makefile.common
include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonATCommandRaw/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ INCLUDES +=
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c

include ../Makefile.common
include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonCleanup/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ UNWINDSET += __CPROVER_file_local_cellular_common_c__Cellular_FreeContext.0:$(CB
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c

include ../Makefile.common
include ../Makefile.common
4 changes: 2 additions & 2 deletions test/cbmc/proofs/Cellular_CommonCreateSocket/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ UNWINDSET += harness.0:$(CBMC_MAX_BUFSIZE)
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c

include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonGetEidrxSettings/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ INCLUDES +=
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_3gpp_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_3gpp_api.c

include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonGetIPAddress/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ INCLUDES +=
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_3gpp_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_3gpp_api.c

include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonGetModemInfo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ INCLUDES +=
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_3gpp_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_3gpp_api.c

include ../Makefile.common
6 changes: 3 additions & 3 deletions test/cbmc/proofs/Cellular_CommonGetNetworkTime/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ INCLUDES +=
PROOF_SOURCES += $(PROOFDIR)/$(HARNESS_FILE).c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/cellular_cbmc_state.c
PROOF_SOURCES += $(SRCDIR)/test/cbmc/sources/global_state_cellular.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/common/src/cellular_3gpp_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common_api.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_common.c
PROJECT_SOURCES += $(SRCDIR)/source/cellular_3gpp_api.c

include ../Makefile.common
Loading

0 comments on commit cefe8c6

Please sign in to comment.