test: add multi-function stress suite and severe load testing

This commit is contained in:
Naeel
2026-04-14 23:15:26 +03:00
parent b1b990ada3
commit d40c5c6e07
8 changed files with 210 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
def main():
total = 0
for i in range(1, 12000):
total += (i * i) % 97
return f"cpu-ok:{total}"
+2
View File
@@ -0,0 +1,2 @@
def main():
return "fast-ok"
+2
View File
@@ -0,0 +1,2 @@
def main():
return '{"status":"ok","service":"json"}'