569
570
571
572
573
574
575
576
577
578
579
580
581
582
|
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
Skip if a File Exists
~~~~~~~~~~~~~~~~~~~~~
-----------------
[skip]
fileexists /path/to/a/file # skip if /path/to/a/file exists
-----------------
Skip if a File Does not Exist
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-----------------
[skip]
filenotexists /path/to/a/file # skip if /path/to/a/file does not exist
-----------------
Skip if a script completes with 0 status
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-----------------
[skip]
script /path/to/a/script # skip if /path/to/a/script completes with 0 status
-----------------
Skip if test ran more recently than specified time
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.Skip if this test has been run in the past fifteen minutes and 15 seconds.
-----------------
[skip]
|