CLEAR_ID

System Testing Test Script Language.

Syntax

CLEAR_ID ( <channel_identifier> )

Description

The CLEAR_ID instruction clears a communication channel.

The communication channel has no more links with remote applications under test.

You must declare a communication channel with the CHANNEL instruction.

Example

...

COMMTYPE ux_inet IS integer_t

CHANNEL ux_inet: ch

...

SCENARIO First

...

#integer_t id;

CALL socket(AF_UNIX, SOCK_STREAM, 0) @@ id

ADD_ID(id,ch)

...

CLEAR_ID(ch)

....

Related Topics

ADD_ID | CHANNEL | WAITTIL