zeek/testing/btest/Baseline/language.if/out
Daniel Thayer 90281a2423 Add tests of the Bro scripting language
Added tests of all built-in Bro data types (including different
representations of constant values, and max./min. values), keywords, and
operators (including special properties of certain operators, such as
short-circuit evaluation and associativity).
2012-08-24 11:32:49 -05:00

12 lines
294 B
Text

if T (PASS)
if T else (PASS)
if F else (PASS)
if T else if F (PASS)
if F else if T (PASS)
if T else if T (PASS)
if T else if F else (PASS)
if F else if T else (PASS)
if T else if T else (PASS)
if F else if F else (PASS)
if F else if F else if T else (PASS)
if F else if F else if F else (PASS)