Today I tried to write a stress test on my solution in Linux (Ubuntu). In Windows I wrote batch file. How should I write a stress test in Linux?
I will be glad if you write any solution.
# | User | Rating |
---|---|---|
1 | tourist | 3985 |
2 | jiangly | 3814 |
3 | jqdai0815 | 3682 |
4 | Benq | 3529 |
5 | orzdevinwang | 3526 |
6 | ksun48 | 3517 |
7 | Radewoosh | 3410 |
8 | hos.lyric | 3399 |
9 | ecnerwala | 3392 |
9 | Um_nik | 3392 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | maomao90 | 162 |
2 | Um_nik | 162 |
4 | atcoder_official | 161 |
5 | djm03178 | 158 |
6 | -is-this-fft- | 157 |
7 | adamant | 155 |
8 | awoo | 154 |
8 | Dominater069 | 154 |
10 | luogu_official | 150 |
rmn
|
14 years ago,
#
|
+4
You can use script written in Bash.
You need to create a file (for example stress.sh), insert script inside and then make it executable from the command line with the following command: chmod +x stress.sh After all you can run it as: ./stress.sh The script stops when output files differ. You can use your own checker instead of diff, it should return exit code 0 if everything is ok and non-0 otherwise. If you need more info on bash syntax you can always use: man bash :)
→
Reply
|
merkator
|
14 years ago,
#
^
|
+3
Thanks a lot. I russian version I've already got this answer (to use bash), but your is more useful =)
→
Reply
|
ivan.popelyshev
|
14 years ago,
#
|
0
Write a TCL script :)
→
Reply
|
merkator
|
14 years ago,
#
^
|
+1
:) Ok.
→
Reply
|
Name |
---|