Automated Tests for Beta Testers - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Developer (https://hashcat.net/forum/forum-39.html) +--- Forum: Beta Tester (https://hashcat.net/forum/forum-31.html) +--- Thread: Automated Tests for Beta Testers (/thread-2873.html) |
Automated Tests for Beta Testers - atom - 11-28-2013 Hey Beta-Tester, we've prepared an automated testing environment that helps us to check the most important of oclHashcat's features without user interaction. We need you to run this on your system so that we get results from as many as different configurations. The test script is able to run on both linux and on windows but for windows it's required to have installed a bash-script interpreter. So, on windows, you would propably install cygwin and you're fine. Once you're done with the tests you check the final report logfile for errors (detailed description how to do that later). Please report back whatever you have found errors or not. If there were errors, please try to reproduce it by the commandline from the logfile and post all required informations / files to reproduce it for us. Report OS, GPU model driver, etc. Best would be a clinfo output if you're on AMD. There is no restriction to a specific driver. In theory, for AMD, every driver >= 13.4 is fine. For NV, every driver >= 319.37. Actually we would like to see results from different drivers as this is the situation in the wild. Don't change the one you're running right now. Preparations:
Running the Test-Script:
The Test-System has the following commandline switches that you need to define to whatever your system is: Code: -b Select binary : So, here's how I'd run it on my linux system with hd6990: Code: $ test_1385640930/test.sh -b amd -x 64 -o linux Or, if you are on windows, you'd do: Code: $ test_1385640930/test.sh -b amd -x 64 -o win Well, I'm sure everyone understands this Once the script is done you can easily open the logfile test_1385640930/test_xxx* (changes on configuration) in a texteditor and search for " not " or "timeout". If nothing is found, good! Happy testing and much thanks! RE: Automated Tests for Beta Testers - atom - 11-28-2013 Oh btw, the testscript is in /beta RE: Automated Tests for Beta Testers - mastercracker - 11-28-2013 Does the script run on all available GPUs? If you have mixed GPUs, there could be card specific bugs. Also, some bugs were reported to happen only in multi-gpu setup. RE: Automated Tests for Beta Testers - atom - 11-28-2013 Yeah, you can enable multi-gpu by removing the -d flag in the test.sh file (line 12 or so) RE: Automated Tests for Beta Testers - kartan - 11-28-2013 yeah finally! i am about to give it a try right now. RE: Automated Tests for Beta Testers - mastercracker - 11-29-2013 I will need some guidance here. I have installed, oclhashcat b62, the test folder inside and installed cygwin 64 bit. How do I make cygwin to run the bash file. Clicking on the .sh file asks what program to use. Pointing it to bash.exe does nothing (a window pop up and close without running anything). Anyone knows how to use cygwin properly to run the .sh files? RE: Automated Tests for Beta Testers - atom - 11-29-2013 you need to run the cygwin.bat, that gives you the terminal, which is using a bash. then cd to /cygdrive and from there cd to your installation directory. for me, it is: cd /cygdrive/d/oclHashcat-1.00/ RE: Automated Tests for Beta Testers - mastercracker - 11-29-2013 (11-29-2013, 08:59 AM)atom Wrote: you need to run the cygwin.bat, that gives you the terminal, which is using a bash. then cd to /cygdrive and from there cd to your installation directory. for me, it is: cd /cygdrive/d/oclHashcat-1.00/I have done this already but if I do Code: bash cudaexample0.sh Code: sh cudaexample0.sh Code: cudaexample0.sh: line 1: ./cudaHashcat64.bin: cannot execute binary file RE: Automated Tests for Beta Testers - mastercracker - 11-29-2013 While running the test.sh file (command line: bash test.sh -b nvidia -x 64 -o win), I get the error: Code: Can't open perl script "tools/test.pl": No such file or directory Code: ERROR: hashfile is empty or corrupt EDIT: Also there were no perl script or tools folder in the package that I have downloaded from the beta section. RE: Automated Tests for Beta Testers - atom - 11-29-2013 (11-29-2013, 12:58 PM)mastercracker Wrote:(11-29-2013, 08:59 AM)atom Wrote: you need to run the cygwin.bat, that gives you the terminal, which is using a bash. then cd to /cygdrive and from there cd to your installation directory. for me, it is: cd /cygdrive/d/oclHashcat-1.00/I have done this already but if I do Right, for windows please run the cudaExample0.cmd from outside cygwin. |