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 | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 165 |
2 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
9 | nor | 153 |
9 | Dominater069 | 153 |
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 |
---|