LSL-PyOptimizer/unit_tests/regression.suite/breakcont-n.out
Sei Lisa 1867dc78e7 Add the new test suite.
This test suite has been in use for a long time now, in place of the obsolete and unmanageable testparser.py and testfuncs.py. It verifies the complete optimizer output to stdout and stderr, to ensure that the output matches the expectations.

See unit_tests/README.txt for more info.
2019-01-04 20:27:36 +01:00

34 lines
893 B
Text

default
{
state_entry()
{
integer i = 0;
{
while (i < 10)
{
integer j = 0;
{
while (j < 10)
{
if (j == 5)
jump J_autoGen00001;
if (j == 6)
jump J_autoGen00002;
if (j == 7)
jump J_autoGen00003;
if (j == 8)
jump J_autoGen00004;
++j;
@J_autoGen00004;
}
@J_autoGen00003;
}
++i;
if (llFrand(5) < 3)
jump J_autoGen00001;
@J_autoGen00002;
}
@J_autoGen00001;
}
}
}