Add timer guards testcase

This commit is contained in:
Adam Sampson 2007-04-20 17:54:07 +00:00
parent a49b884d48
commit e7be8814ad

View File

@ -0,0 +1,16 @@
PROC P ()
CHAN OF INT c, d:
TIMER tim:
INT t, x:
SEQ
tim ? t
ALT
c ? x
SKIP
d ? x
SKIP
tim ? AFTER t PLUS 100000
SKIP
tim ? AFTER t PLUS 200000
SKIP
: