PAUSE

System Testing Supervisor Script Language.

Purpose

You may use the PAUSE instruction to delay script execution.

Syntax

PAUSE <duration>

<duration> is an integer specifying the length of the delay in seconds.

Description

The PAUSE instruction introduces a delay in the execution of the supervisor script. PAUSE does not delay any other processes that are already running on the machines.

<duration> is expressed in seconds. It may be an integer constant or an integer expression.

Example

DELAY = 25

...

PAUSE 3

...

PAUSE DELAY