function test processing

NAME [edit section]

test_processing

SYNOPSIS [edit section]

Performs the steps needed to determine success or failure of the test

DESCRIPTION [edit section]

This function is defined in the base test script for a test, and executes the commands needed to determine success or failure of the test.

When this function starts, the test has been run, and the test log has been retrieved from the system.

Commonly called functions or programs [edit section]

This function commonly log_compare one or more times. This is used to verify if an expected pattern is in the log a certain number of times.

The arguments to log_compare are sometimes parameterized. That is, a test variable may be used for the number of positive or negative results expected for the test. This allows for taking into account board-specific results for complex tests, such as LTP. A complex, comprehensive test often will have results that are dependent on kernel configuration or distribution settings. Using a variable to customize the expected results allows the tester to avoid lots of false test failures.

EXAMPLES [edit section]

Some sample contents are:

ENVIRONMENT and ARGUMENTS [edit section]

However, some variables that are commonly used in this function are:

RETURN [edit section]

Returns non-zero for error

Note that test_processing is the last function called during test execution. The return value for this function is the return value for the entire test, and indicates success or failure for the whole test.

SOURCE [edit section]

This function is located in the base test script (fuego_test.sh) for the test.

An example path would be: /fuego-core/engine/tests/Functional.hello_world/fuego_test.sh

SEE ALSO [edit section]