TEST_CYCLE_END
# The TEST_CYCLE_END keyword is used to designate the last test
# mode in a test cycle. This is used only when one of the following
# is a requirement:
# * an accurate count of cycles must be maintained
# * the test must be terminated after the required # of cycles
#
# Example:
@TEST_CYCLE_END
#maximum_cycles counter_label test_complete_path
30000 test_cycles 91
# NOTES: The counter_label variable is maintained on hard disk
# so that it can be recovered after the computer is powered off
# or the ASSET software is restarted.
#
# When number of cycles reaches the value specified for
# "maximum_cycles", then control is passed to the test mode
# or test procedure specified as "test_complete_path".
# This would normally be a shutdown sequence.
#
# The RETURN macro may also be used in the "test_complete_path"
# field to return control to a calling procedure.