mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00

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).
12 lines
294 B
Text
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)
|