INITIALIZATION ... END INITIALIZATION

C Test Script Language

Syntax

INITIALIZATION

END INITIALIZATION

Description

The INITIALIZATION and END INITIALIZATION statements let you provide native code that is integrated into the generation as the first native instructions of the test program (first lines of main).

In some environments, such as if you are using a different target machine, this provides a way to initialize the target.

Associated Rules

An INITIALIZATION block must appear after the BEGIN instruction or between two SERVICE blocks.

This block can only contain native code. This code must begin with '#' or '@'.

There is no limit to the number of INITIALIZATION blocks. During the run process, they are concatenated in the order in which they appeared in the test script.

Related Topics

TERMINATION