可用的回归测试通过的标准版本

This commit is contained in:
2026-06-18 00:39:43 +08:00
parent bffb0cb6b7
commit e02c867edf
365 changed files with 22562 additions and 24532 deletions

View File

@@ -7,48 +7,48 @@ Module: zc.logic_test
import config
import t, c
def ForRangeBasicTest(stop: t.CInt) -> t.CVoid | t.State: pass
def ForRangeBasicTest(stop: t.CInt) -> t.CInt: pass
def ForRangeWithStartStop(start: t.CInt, stop: t.CInt, step: t.CInt) -> t.CVoid | t.State: pass
def ForRangeWithStartStop(start: t.CInt, stop: t.CInt, step: t.CInt) -> t.CInt: pass
def NestedForRangeTest(rows: t.CInt, cols: t.CInt) -> t.CVoid | t.State: pass
def NestedForRangeTest(rows: t.CInt, cols: t.CInt) -> t.CInt: pass
def ForWithIfBreakTest(data_size: t.CInt) -> t.CVoid | t.State: pass
def ForWithIfBreakTest(data_size: t.CInt) -> t.CInt: pass
def ForWithIfContinueTest(n: t.CInt) -> t.CVoid | t.State: pass
def ForWithIfContinueTest(n: t.CInt) -> t.CInt: pass
def ForWithElifBranchTest(value: t.CInt) -> t.CVoid | t.State: pass
def ForWithElifBranchTest(value: t.CInt) -> t.CInt: pass
def WhileWithIfElifElseTest(iterations: t.CInt) -> t.CVoid | t.State: pass
def WhileWithIfElifElseTest(iterations: t.CInt) -> t.CInt: pass
def WhileWithNestedIfTest(limit: t.CInt) -> t.CVoid | t.State: pass
def WhileWithNestedIfTest(limit: t.CInt) -> t.CInt: pass
def WhileWithMatchCaseTest(value: t.CInt) -> t.CVoid | t.State: pass
def WhileWithMatchCaseTest(value: t.CInt) -> t.CInt: pass
def WhileWithMatchCaseNoBreakTest(value: t.CInt) -> t.CVoid | t.State: pass
def WhileWithMatchCaseNoBreakTest(value: t.CInt) -> t.CInt: pass
def ComplexForWhileMatchTest(outer_limit: t.CInt, inner_limit: t.CInt) -> t.CVoid | t.State: pass
def ComplexForWhileMatchTest(outer_limit: t.CInt, inner_limit: t.CInt) -> t.CInt: pass
def ForWithCaseAndNoBreakTest(n: t.CInt) -> t.CVoid | t.State: pass
def ForWithCaseAndNoBreakTest(n: t.CInt) -> t.CInt: pass
def WhileWithBreakConditionTest(limit: t.CInt) -> t.CVoid | t.State: pass
def WhileWithBreakConditionTest(limit: t.CInt) -> t.CInt: pass
def NestedWhileWithMultipleBreakPoints(depth: t.CInt, width: t.CInt) -> t.CVoid | t.State: pass
def NestedWhileWithMultipleBreakPoints(depth: t.CInt, width: t.CInt) -> t.CInt: pass
def ForWithMatchCaseInLoopTest(iterations: t.CInt) -> t.CVoid | t.State: pass
def ForWithMatchCaseInLoopTest(iterations: t.CInt) -> t.CInt: pass
def ComplexLogicWithElifChains(a: t.CInt, b: t.CInt, c_val: t.CInt) -> t.CVoid | t.State: pass
def ComplexLogicWithElifChains(a: t.CInt, b: t.CInt, c_val: t.CInt) -> t.CInt: pass
def ForRangeWithStepAndCondition(n: t.CInt, step: t.CInt) -> t.CVoid | t.State: pass
def ForRangeWithStepAndCondition(n: t.CInt, step: t.CInt) -> t.CInt: pass
def MatchCaseWithGuardConditions(value: t.CInt) -> t.CVoid | t.State: pass
def MatchCaseWithGuardConditions(value: t.CInt) -> t.CInt: pass
def WhileWithMultipleMatchCases(iterations: t.CInt) -> t.CVoid | t.State: pass
def WhileWithMultipleMatchCases(iterations: t.CInt) -> t.CInt: pass
def ForWhileMixWithBreakAndContinue(n: t.CInt) -> t.CVoid | t.State: pass
def ForWhileMixWithBreakAndContinue(n: t.CInt) -> t.CInt: pass
def ComplexCaseMatchingWithRanges(start: t.CInt, end: t.CInt) -> t.CVoid | t.State: pass
def ComplexCaseMatchingWithRanges(start: t.CInt, end: t.CInt) -> t.CInt: pass
def WhileWithElifInElifChain(limit: t.CInt) -> t.CVoid | t.State: pass
def WhileWithElifInElifChain(limit: t.CInt) -> t.CInt: pass
def ForWithCaseNoBreakNested(inner_limit: t.CInt) -> t.CVoid | t.State: pass
def ForWithCaseNoBreakNested(inner_limit: t.CInt) -> t.CInt: pass