Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibIts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TTCN-3 Libraries
LibIts
Commits
794bda83
Commit
794bda83
authored
14 years ago
by
berge
Browse files
Options
Downloads
Patches
Plain Diff
Renamed back Ptc* component to Its*
parent
024ce6da
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ttcn/CAM/LibItsCam_Functions.ttcn
+3
-3
3 additions, 3 deletions
ttcn/CAM/LibItsCam_Functions.ttcn
ttcn/DENM/LibItsDenm_Functions.ttcn
+3
-3
3 additions, 3 deletions
ttcn/DENM/LibItsDenm_Functions.ttcn
ttcn/LibIts_Interface.ttcn
+4
-4
4 additions, 4 deletions
ttcn/LibIts_Interface.ttcn
with
10 additions
and
10 deletions
ttcn/CAM/LibItsCam_Functions.ttcn
+
3
−
3
View file @
794bda83
...
...
@@ -15,10 +15,10 @@ module LibItsCam_Functions {
* @desc Create Facility component and map CAM port
* @param p_camPtc returned Facility component variable
*/
function
f_cfCamUp
(
out
Ptc
Fa
p_ptcCam
)
{
function
f_cfCamUp
(
out
Its
Fa
p_ptcCam
)
{
// Create Facility component
p_ptcCam
:=
Ptc
Fa
.
create
(
"CAM Tester"
);
p_ptcCam
:=
Its
Fa
.
create
(
"CAM Tester"
);
// map ports
map
(
p_ptcCam
:
camPort
,
system
:
camPort
);
...
...
@@ -29,7 +29,7 @@ module LibItsCam_Functions {
* @desc Wait for component to finish and unmap CAM ports
* @param p_camPtc Facility component variable
*/
function
f_cfCamDown
(
in
Ptc
Fa
p_ptcCam
)
runs
on
ItsMtc
{
function
f_cfCamDown
(
in
Its
Fa
p_ptcCam
)
runs
on
ItsMtc
{
tc_guard
.
start
;
alt
{
...
...
This diff is collapsed.
Click to expand it.
ttcn/DENM/LibItsDenm_Functions.ttcn
+
3
−
3
View file @
794bda83
...
...
@@ -15,10 +15,10 @@ module LibItsDenm_Functions {
* @desc Create Facility component and connects DENM port
* @param p_ptcDenm returned Facility component variable
*/
function
f_cfDenmUp
(
out
Ptc
Fa
p_ptcDenm
)
{
function
f_cfDenmUp
(
out
Its
Fa
p_ptcDenm
)
{
// Create Facility component
p_ptcDenm
:=
Ptc
Fa
.
create
(
"DENM Tester"
);
p_ptcDenm
:=
Its
Fa
.
create
(
"DENM Tester"
);
// map ports
map
(
p_ptcDenm
:
denmPort
,
system
:
denmPort
);
...
...
@@ -29,7 +29,7 @@ module LibItsDenm_Functions {
* @desc Wait for component to finish and unmap DENM ports
* @param p_camPtc Facility component variable
*/
function
f_cfDenmDown
(
in
Ptc
Fa
p_ptcDenm
)
runs
on
ItsMtc
{
function
f_cfDenmDown
(
in
Its
Fa
p_ptcDenm
)
runs
on
ItsMtc
{
tc_guard
.
start
;
alt
{
[]
p_ptcDenm
.
done
{
...
...
This diff is collapsed.
Click to expand it.
ttcn/LibIts_Interface.ttcn
+
4
−
4
View file @
794bda83
...
...
@@ -19,7 +19,7 @@ module LibIts_Interface {
/**
* @desc Test component for ITS Access layer
*/
type
component
Ptc
Ac
{
type
component
Its
Ac
{
// AC1 ports
port
MacM5Port
macM5Port
;
...
...
@@ -31,7 +31,7 @@ module LibIts_Interface {
/**
* @desc Test component for ITS Facility layer
*/
type
component
Ptc
Fa
{
type
component
Its
Fa
{
// FA1 ports
port
CamPort
camPort
;
...
...
@@ -50,7 +50,7 @@ module LibIts_Interface {
/**
* @desc Test component for ITS Management layer
*/
type
component
Ptc
Mgt
{
type
component
Its
Mgt
{
// MGT1 ports
port
IiscPort
iiscPort
;
...
...
@@ -59,7 +59,7 @@ module LibIts_Interface {
/**
* @desc Test component for ITS Network and Transport layer
*/
type
component
Ptc
Nt
{
type
component
Its
Nt
{
// NT1 ports
port
BtpPort
btpPort
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment