123456789101112131415161718192021 |
- /****************************************************************************
- * Test 02: Real-time checkpoint options.
- *
- * A series of tests which checkpoint and exit after 30 seconds. At the
- * beginning of the test, a timestamp file is created. Checking the
- * timestamp on this file (also stored as an integer in the file, as seconds
- * since the epoch) against the timestamp on the checkpoint file should give
- * a reasonable, though not utterly infallible test.
- *
- * This variant has an exit spec and time specified in minutes and seconds,
- * where the minutes are positive, and the seconds are negative. This
- * should help if the computation of the alarm time is compromised somehow.
- *
- * Author: Jed Wing <[email protected]>
- * Date: 2008-04-04
- ****************************************************************************/
- basename = "02-rtcheckpoint_minutes2"
- INCLUDE_FILE = "common2.mdl"
- CHECKPOINT_REALTIME = 1:-30 EXIT
|