From: Theodore Tso Date: Mon, 20 May 1996 21:16:20 +0000 (+0000) Subject: Don't do timing tests; it takes too long! X-Git-Tag: krb5-1.0-beta6~55 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=be2bfc4183f8d2342e5d2872c1f88e7ac26f348d;p=krb5.git Don't do timing tests; it takes too long! git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8064 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/crypto/sha/ChangeLog b/src/lib/crypto/sha/ChangeLog index 9e3c0011d..3ded41a01 100644 --- a/src/lib/crypto/sha/ChangeLog +++ b/src/lib/crypto/sha/ChangeLog @@ -1,3 +1,7 @@ +Mon May 20 17:15:32 1996 Theodore Y. Ts'o + + * t_shs.c (main): Don't do timing tests; it takes too long! + Tue May 14 17:09:36 1996 Richard Basch * .Sanitize: reflect current files diff --git a/src/lib/crypto/sha/t_shs.c b/src/lib/crypto/sha/t_shs.c index 8c1a1290a..de30603e2 100644 --- a/src/lib/crypto/sha/t_shs.c +++ b/src/lib/crypto/sha/t_shs.c @@ -104,6 +104,7 @@ main() puts( "passed, result= 3232AFFA48628A26653B5AAA44541FD90D690603" ); #endif /* NEW_SHS */ +#if 0 printf( "\nTesting speed for 100MB data... " ); shsInit( &shsInfo ); secondCount = time( NULL ); @@ -112,6 +113,7 @@ main() secondCount = time( NULL ) - secondCount; printf( "done. Time = %ld seconds, %ld kbytes/second.\n", \ secondCount, 100500L / secondCount ); +#endif puts( "\nAll SHS tests passed" ); exit( OK );