diff options
| author | 彭宣正 <[email protected]> | 2022-09-05 19:03:03 +0800 |
|---|---|---|
| committer | 彭宣正 <[email protected]> | 2022-09-05 19:03:03 +0800 |
| commit | 2a0f0af98db078dc159a138ef8d25048807222ea (patch) | |
| tree | e92eb30a921a28e8fa50bfa23f78510e7ae50629 /gtest/script/elua_time_out.lua | |
| parent | fb53526b29c8092aed85ec73f17b470df379e95a (diff) | |
✨ feat(TSG-11870): 修改测试用例
Diffstat (limited to 'gtest/script/elua_time_out.lua')
| -rw-r--r-- | gtest/script/elua_time_out.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gtest/script/elua_time_out.lua b/gtest/script/elua_time_out.lua new file mode 100644 index 0000000..112dabc --- /dev/null +++ b/gtest/script/elua_time_out.lua @@ -0,0 +1,10 @@ +local str = TEST.data + +local sum = 0 +for i = 0, 10000 do + for j = 0, 1000 do + sum = sum + i + j + end +end + +return string.len(str), str |
