Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ITS - Intelligent Transport Systems
ITS
Commits
6ce80906
Commit
6ce80906
authored
Feb 02, 2021
by
ASN.1 Documenter
Browse files
AtsPki support in cygwin
parent
7ad6a338
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
47 additions
and
3 deletions
+47
-3
.gitmodules
.gitmodules
+6
-0
Makefile
Makefile
+2
-1
ccsrc/EncDec/module.mk
ccsrc/EncDec/module.mk
+6
-1
ccsrc/Ports/LibIts_ports/AdapterControlPort.hh
ccsrc/Ports/LibIts_ports/AdapterControlPort.hh
+3
-0
ccsrc/Ports/LibIts_ports/UpperTesterPort.hh
ccsrc/Ports/LibIts_ports/UpperTesterPort.hh
+16
-0
ttcn/AtsSecurity/module.mk
ttcn/AtsSecurity/module.mk
+1
-1
ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module
.../titan.TestPorts.Common_Components.Abstract_Socket/module
+1
-0
ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module.mk
...tan.TestPorts.Common_Components.Abstract_Socket/module.mk
+2
-0
ttcn/modules/titan.TestPorts.HTTPmsg/module
ttcn/modules/titan.TestPorts.HTTPmsg/module
+1
-0
ttcn/modules/titan.TestPorts.HTTPmsg/module.mk
ttcn/modules/titan.TestPorts.HTTPmsg/module.mk
+9
-0
No files found.
.gitmodules
View file @
6ce80906
...
...
@@ -6,3 +6,9 @@
path = ttcn/LibCommon
url = ../../LIBS/LibCommon.git
branch = cygwin
[submodule "ttcn/modules/titan.TestPorts.HTTPmsg"]
path = ttcn/modules/titan.TestPorts.HTTPmsg/module
url = https://github.com/eclipse/titan.TestPorts.HTTPmsg.git
[submodule "ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket"]
path = ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module
url = https://github.com/eclipse/titan.TestPorts.Common_Components.Abstract_Socket.git
Makefile
View file @
6ce80906
...
...
@@ -11,6 +11,7 @@ endif
ifeq
(,$(TTCN3_DIR))
$(error
TTCN3_DIR
shall
be
defined
in
config.mk)
endif
first
:
all
define
IncludeModule
undefine
sources
...
...
@@ -19,7 +20,7 @@ undefine includes
include
$(1)/module.mk
$$(foreach
S,
$$(sources),
$$(eval
all_sources
+=
$(1)
/
$
$(S)
))
$$(foreach
I,
$$(includes),
$$(eval
all_includes
+=
$(1)
/
$
$(I)
))
$$(foreach
M,
$$(modules),
$$(eval
$$(call
IncludeModule,
$(1)/$$(M))))
$$(foreach
M,
$$(modules),
$$(eval
$$(call
IncludeModule,
$$(if
$$(filter
/%,
$$(M)),
$$(M),
$(1)/$$(M))))
)
endef
all_includes
:=
$(TTCN3_DIR)
/include
$(TTCN3_DIR)
/src
$(TOPDIR)
/ccsrc/Framework
...
...
ccsrc/EncDec/module.mk
View file @
6ce80906
...
...
@@ -52,7 +52,12 @@ sources += LibItsRtcmem_Encdec.cc
endif
ifeq
(AtsPki, $(ATS))
sources
+=
LibItsPki_Encdec.cc
sources
:=
\
LibItsGeoNetworking_Encdec.cc
\
LibItsIpv6OverGeoNetworking_Encdec.cc
\
LibItsSecurity_Encdec.cc
\
LibItsPki_Encdec.cc
\
LibItsHttp_Encdec.cc
endif
# LibItsPki_Encdec.cc
...
...
ccsrc/Ports/LibIts_ports/AdapterControlPort.hh
View file @
6ce80906
...
...
@@ -28,6 +28,9 @@
#ifdef LibItsV2G__TestSystem_HH
#include "V2G_ports/AdapterControlPort_V2G.hh"
#endif
//#ifdef LibItsPki__TestSystem_HH
//#include "Pki_ports/AdapterControlPort_Pki.hh"
//#endif
#else //_NO_SOFTLINKS_
...
...
ccsrc/Ports/LibIts_ports/UpperTesterPort.hh
View file @
6ce80906
...
...
@@ -32,6 +32,15 @@
#include "DENM_ports/UpperTesterPort_DENM.hh"
#endif
#ifdef AtsPki
#include "GN_ports/UpperTesterPort_GN.hh"
#ifndef LibItsGeoNetworking__TestSystem_HH
#include "Pki_ports/UpperTesterPkiPort.hh"
#endif
// #include "BTP_ports/UpperTesterPort_BTP.hh"
// #include "CAM_ports/UpperTesterPort_CAM.hh"
#endif
#ifdef AtsSremSsem
#include "GN_ports/UpperTesterPort_GN.hh"
#include "BTP_ports/UpperTesterPort_BTP.hh"
...
...
@@ -80,6 +89,13 @@
#include "UpperTesterPort_DENM.hh"
#endif
#ifdef AtsPki
#include "UpperTesterPort_GN.hh"
#include "UpperTesterPort_BTP.hh"
#include "UpperTesterPort_CAM.hh"
#include "UpperTesterPort_DENM.hh"
#endif
#ifdef AtsSremSsem
#include "UpperTesterPort_GN.hh"
#include "UpperTesterPort_BTP.hh"
...
...
ttcn/AtsSecurity/module.mk
View file @
6ce80906
suite
:=
AtsSecurity
sources
:=
ItsSecurity_Functions.ttcn
\
ItsSecurity_Pics.ttcn
\
ItsSecurity_Templates.ttcn
\
ItsSecurity_TestCases.ttcn
\
ItsSecurity_TestControl.ttcn
\
ItsSecurity_TestSystem.ttcn
# ItsSecurity_Pics.ttcn \
modules
:=
../LibCommon
\
../LibIts
\
...
...
module
@
bd41994a
Subproject commit bd41994ab31af385c0b87a8074bf9f768c28c514
ttcn/modules/titan.TestPorts.Common_Components.Abstract_Socket/module.mk
0 → 100755
View file @
6ce80906
sources
:=
module/src/Abstract_Socket.cc
includes
:=
module/src
\ No newline at end of file
module
@
9a0dfdec
Subproject commit 9a0dfdecfd33cf083890aa537015de718f960642
ttcn/modules/titan.TestPorts.HTTPmsg/module.mk
0 → 100755
View file @
6ce80906
sources
:=
module/src/HTTPmsg_MessageLen.ttcn
\
module/src/HTTPmsg_MessageLen_Function.cc
\
module/src/HTTPmsg_PortType.ttcn
\
module/src/HTTPmsg_PT.cc
\
module/src/HTTPmsg_PT.hh
\
module/src/HTTPmsg_Types.ttcn
includes
:=
module/src
modules
:=
../titan.TestPorts.Common_Components.Abstract_Socket
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment