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

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,32 +7,32 @@ Module: zc.test
import config
import t, c
def AboutSizeTWhileTest(length: t.CSizeT) -> t.CVoid | t.State: pass
def AboutSizeTWhileTest(length: t.CSizeT) -> t.CInt: pass
def MathBasicTest(x: t.CInt, y: t.CInt) -> t.CInt | t.State: pass
def MathBasicTest(x: t.CInt, y: t.CInt) -> t.CInt: pass
def MathAdvancedTest(value: t.CInt) -> t.CInt | t.State: pass
def MathAdvancedTest(value: t.CInt) -> t.CInt: pass
def WhileWithElifElseTest(start: t.CInt, end: t.CInt) -> t.CVoid | t.State: pass
def WhileWithElifElseTest(start: t.CInt, end: t.CInt) -> t.CInt: pass
def NestedWhileWithMacrosTest(outer_limit: t.CInt, inner_limit: t.CInt) -> t.CVoid | t.State: pass
def NestedWhileWithMacrosTest(outer_limit: t.CInt, inner_limit: t.CInt) -> t.CInt: pass
def ComplexConditionTest(a: t.CInt, b: t.CInt, c_val: t.CInt) -> t.CVoid | t.State: pass
def ComplexConditionTest(a: t.CInt, b: t.CInt, c_val: t.CInt) -> t.CInt: pass
def RetryLoopTest(retry_count: t.CInt) -> t.CInt | t.State: pass
def RetryLoopTest(retry_count: t.CInt) -> t.CInt: pass
def BitwiseOperationsTest(value: t.CInt) -> t.CInt | t.State: pass
def BitwiseOperationsTest(value: t.CInt) -> t.CInt: pass
def CompoundAssignmentMathTest(a: t.CInt, b: t.CInt) -> t.CInt | t.State: pass
def CompoundAssignmentMathTest(a: t.CInt, b: t.CInt) -> t.CInt: pass
def PowerAndModuloTest(base: t.CInt, exponent: t.CInt) -> t.CInt | t.State: pass
def PowerAndModuloTest(base: t.CInt, exponent: t.CInt) -> t.CInt: pass
def MixedArithmeticTest(x: t.CInt, y: t.CInt, z: t.CInt) -> t.CInt | t.State: pass
def MixedArithmeticTest(x: t.CInt, y: t.CInt, z: t.CInt) -> t.CInt: pass
def MathWithWhileLoopTest(start: t.CInt, count: t.CInt) -> t.CInt | t.State: pass
def MathWithWhileLoopTest(start: t.CInt, count: t.CInt) -> t.CInt: pass
def ComplexNestedMathTest(a: t.CInt, b: t.CInt) -> t.CInt | t.State: pass
def ComplexNestedMathTest(a: t.CInt, b: t.CInt) -> t.CInt: pass
def ConditionalMathChainTest(value: t.CInt) -> t.CInt | t.State: pass
def ConditionalMathChainTest(value: t.CInt) -> t.CInt: pass
def BitManipulationMathTest(value: t.CInt) -> t.CInt | t.State: pass
def BitManipulationMathTest(value: t.CInt) -> t.CInt: pass