snapshot before regression test

This commit is contained in:
t
2026-07-18 19:25:40 +08:00
commit 796222a300
2295 changed files with 206453 additions and 0 deletions

70
Test/DocTest/App/main.py Normal file
View File

@@ -0,0 +1,70 @@
import t
import stdio
import string
import c
import testcheck
import remote
# 同模块函数(有 docstring
def local_func():
"Local function docstring."
return 0
# 同模块函数(无 docstring
def no_doc_func():
return 0
# 同模块类(有 docstring
@t.Object
class LocalClass:
"Local class docstring."
value: t.CInt
def local_method(self):
"Local method docstring."
return 0
def _check_doc_adaptive(name: str, doc: str, expected: str):
"""自适应检查 docstring非空时验证匹配空时视为优化剥离"""
if doc == None:
testcheck.ok(f"{name}: __doc__ optimized out (null)")
return
if doc == expected:
testcheck.ok(f"{name}: __doc__ matches")
else:
testcheck.fail(f"{name}: __doc__ mismatch (got '{doc}', expected '{expected}')")
def _check_doc_null(name: str, doc: str):
"""检查 docstring 为 null无 docstring 的符号)"""
if doc == None:
testcheck.ok(f"{name}: __doc__ is null")
else:
testcheck.fail(f"{name}: __doc__ should be null but got '{doc}'")
def test_local_doc():
testcheck.section("Local __doc__")
_check_doc_adaptive("local_func", local_func.__doc__, "Local function docstring.")
_check_doc_adaptive("LocalClass", LocalClass.__doc__, "Local class docstring.")
_check_doc_adaptive("LocalClass.local_method", LocalClass.local_method.__doc__, "Local method docstring.")
_check_doc_null("no_doc_func", no_doc_func.__doc__)
def test_cross_module_doc():
testcheck.section("Cross-module __doc__")
_check_doc_adaptive("remote.remote_func", remote.remote_func.__doc__, "Remote function docstring.")
_check_doc_adaptive("remote.RemoteClass", remote.RemoteClass.__doc__, "Remote class docstring.")
_check_doc_adaptive("remote.RemoteClass.remote_method", remote.RemoteClass.remote_method.__doc__, "Remote method docstring.")
_check_doc_null("remote.no_doc_func", remote.no_doc_func.__doc__)
def main() -> t.CInt:
testcheck.begin("DocTest: __doc__ magic string test")
test_local_doc()
test_cross_module_doc()
return testcheck.end()

View File

@@ -0,0 +1,20 @@
import t
def remote_func():
"Remote function docstring."
return 0
@t.Object
class RemoteClass:
"Remote class docstring."
value: t.CInt
def remote_method(self):
"Remote method docstring."
return 0
def no_doc_func():
return 0