INCLUDE

System Testing Supervisor Script Language.

Purpose

The INCLUDE instruction allows you to nest supervision scripts.

Syntax

INCLUDE " <filename> "

<filename> is the absolute or relative file name of an included supervision script, delimited by double quotes (").

Description

There is no limit to the levels of nested INCLUDE commands.

If an infinite loop of included files is detected during analysis, you will receive an error message and the execution will fail.

INCLUDE instructions may appear anywhere in a supervision script, including inside a structured IF or WHILE instruction.

There is no default file extension. If the filename has an extension, you must state it in the INCLUDE instruction.

Example

HOST machine_1 IS 193.6.2.1

INCLUDE "included_file.spv"

...

DO test_1 IS machine_1:test_1