Browse Subversion Repository
Contents of /branches/ttcomtester/tests/#35822-random.ttl
Parent Directory
| Revision Log
Revision 10521 -
( show annotations)
( download)
Fri Jan 20 16:03:38 2023 UTC
(14 months, 3 weeks ago)
by zmatsuo
File size: 598 byte(s)
add communication test tool
| 1 |
intdim res 11 |
| 2 |
|
| 3 |
statusbox "0% done." "stat" |
| 4 |
|
| 5 |
uptime stime |
| 6 |
|
| 7 |
for i 1 100 |
| 8 |
for j 1 110000 |
| 9 |
random val 10 |
| 10 |
res[val] = res[val] + 1 |
| 11 |
next |
| 12 |
sprintf2 stat "%d%% done." i |
| 13 |
statusbox stat "stat" |
| 14 |
next |
| 15 |
|
| 16 |
uptime etime |
| 17 |
|
| 18 |
str = '' |
| 19 |
for i 0 10 |
| 20 |
sprintf2 tmp '%d\t%d' i res[i] |
| 21 |
strconcat str tmp |
| 22 |
strconcat str #13#10 |
| 23 |
next |
| 24 |
|
| 25 |
sprintf2 tmp #13#10"%d ms."#13#10 etime - stime |
| 26 |
strconcat str tmp |
| 27 |
|
| 28 |
strspecial str |
| 29 |
;closesbox |
| 30 |
messagebox str 'result' |
| 31 |
|
| 32 |
; gettime filename "35822_%Y%m%d%H%M%S.txt" |
| 33 |
sprintf2 filename "35822_%d.txt" stime |
| 34 |
|
| 35 |
fileopen fp filename 0 |
| 36 |
filewrite fp str |
| 37 |
fileclose fp |
|