#	Demonstration test suite.
# 	A default execution scenario to demo the ETET features
tests
	"starting scenario"
	/ts/tc1.pl
	/ts/tc2.pl
	"next is the last test case"
	/ts/tc3.pl
	"done"

all
	"pick a random test"
	:random:^tests
	"repeat four times /ts/tc1"
	:repeat,4:@/ts/tc1.pl
	"run all the tests in parallel"
	:parallel:^tests
	"pick random tests for 35 seconds"
	:timed_loop,35;random:^tests
