merkator's blog

By merkator, 13 years ago, translation, In English
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.
  • Vote: I like it
  • +6
  • Vote: I do not like it

13 years ago, # |
  Vote: I like it +4 Vote: I do not like it
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 :)
  • 13 years ago, # ^ |
      Vote: I like it +3 Vote: I do not like it
    Thanks a lot. I russian version I've already got this answer (to use bash), but your is more useful =)
13 years ago, # |
  Vote: I like it 0 Vote: I do not like it
Write a TCL script :)