Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Mon, 23 May 2011 07:50:30 -0500
From: "JFoug" <jfoug@....net>
To: <john-dev@...ts.openwall.com>
Subject: Re: BSDI poor in OMP4/OMP7 when doing real work

Here is a patch to get testsuite working properly on builds prior to 
jumbo-5-RC6.

diff -urpN john-1.7.7-jumbo-5/test/tstone john-1.7.7-jumbo-1/test/tstone
--- john-1.7.7-jumbo-5/test/tstone 2011-05-23 08:30:46.078125000 +0000
+++ john-1.7.7-jumbo-1/test/tstone 2011-05-23 08:51:57.828125000 +0000
@@ -31,7 +31,8 @@ EXPARM=
 if [ "$4" != "$EXPARM" ]; then
    EXPARM="$3=$4 $5 $6"
 fi
-JOHN_OUT=`../run/john -nolog -config=../run/john.conf -pot=./tst.pot -sess=./tst 
 -w=./pw.dic $EXPARM $1 2>&1 >/dev/null | awk '{printf("%s %s %s %s 
%s\n",$1,$2,$3,$4,$5);}' | grep guesses`
+#JOHN_OUT=`../run/john -nolog -config=../run/john.conf -pot=./tst.pot -sess=./tst 
 -w=./pw.dic $EXPARM $1 2>&1 >/dev/null | awk '{printf("%s %s %s %s 
%s\n",$1,$2,$3,$4,$5);}' | grep guesses`
+JOHN_OUT=`../run/john -pot=./tst.pot -sess=./tst -w=./pw.dic $EXPARM $1 
2>&1 >/dev/null | awk '{printf("%s %s %s %s %s\n",$1,$2,$3,$4,$5);}' | grep 
guesses`
 if [ "$JOHN_OUT" != "" ]; then
    echo $JOHN_OUT
 else


It simply removes the -nolog and the -config= from the tstone line the 
performs the testing. As a side note, if anyone other than me runs a POSIX 
shell under Win32, then you will have to copy a john.conf file into the 
'./test' directory, since john loads john.conf (john.ini) from the local 
directory for MinGW and Cygwin builds.

I am going to look at jumbo-1 today, and just see where it was at.

From: "magnum" Sent: Monday, May 23, 2011 7:37 AM
>
> (btw the testsuite can't be used as-is for plain jumbo as it lacks some 
> command line options used by the test suite)

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.