aboutsummaryrefslogtreecommitdiffstats
path: root/util/selftest.pl
Commit message (Collapse)AuthorAgeFilesLines
* Copyright consolidation: perl filesRich Salz2016-04-201-2/+7
| | | | | | | | | Add copyright to most .pl files This does NOT cover any .pl file that has other copyright in it. Most of those are Andy's but some are public domain. Fix typo's in some existing files. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Perl's chop / chomp considered bad, use a regexp insteadRichard Levitte2016-02-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Once upon a time, there was chop, which somply chopped off the last character of $_ or a given variable, and it was used to take off the EOL character (\n) of strings. ... but then, you had to check for the presence of such character. So came chomp, the better chop which checks for \n before chopping it off. And this worked well, as long as Perl made internally sure that all EOLs were converted to \n. These days, though, there seems to be a mixture of perls, so lines from files in the "wrong" environment might have \r\n as EOL, or just \r (Mac OS, unless I'm misinformed). So it's time we went for the more generic variant and use s|\R$||, the better chomp which recognises all kinds of known EOLs and chops them off. A few chops were left alone, as they are use as surgical tools to remove one last slash or one last comma. NOTE: \R came with perl 5.10.0. It means that from now on, our scripts will fail with any older version. Reviewed-by: Rich Salz <rsalz@openssl.org>
* GH336: Return an exit code if report failsDirk Wetter2015-08-011-0/+1
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Updates from 1.0.0-stable.Dr. Stephen Henson2009-04-151-2/+2
|
* Check for 'usage' and 'Usage'.Richard Levitte2005-06-201-1/+1
| | | | | | | Submitted by Tim Rice <tim@multitalents.net>. His comment is: I noticed "make report" didn't show the cc version on most of my System V platforms. This patch corrects this.
* Skipping all tests just because one algorithm is disabled seems a bit harsch.Richard Levitte2005-06-061-9/+15
| | | | PR: 1089
* no Makefile.ssl anymoreNils Larsch2005-04-271-2/+2
|
* *** empty log message ***Ulf Möller2002-01-161-1/+1
|
* Forgot a '$'.Ulf Möller2001-03-061-1/+1
|
* DECUlf Möller2001-03-061-0/+1
|
* run self-test with no-krb5Ulf Möller2001-02-271-0/+1
|
* Don't check for bc at all. We can now run a meaningful test even ifUlf Möller2000-12-061-7/+0
| | | | it is missing.
* During the self test, we only want to know what bctest says onRichard Levitte2000-12-061-1/+1
| | | | stderr...
* Have the self test use bctest to check that bc is sane.Richard Levitte2000-12-061-1/+1
|
* fix problems in the selftestUlf Möller2000-10-111-0/+1
|
* Increased consideration for stupid Linux users.Ulf Möller2000-06-061-1/+12
|
* OpenBSD complains.Ulf Möller2000-03-201-1/+1
|
* Change output text (ar is not a linker).Bodo Möller2000-03-041-1/+1
|
* The selftest sometimes lacked important informationUlf Möller2000-03-041-3/+17
|
* Avoid filename "test.c" because otherwise "make test"Bodo Möller2000-02-241-6/+6
| | | | will invoke a default rule built into make.
* Fix NO_RSA (misplaced #endif).Ulf Möller2000-02-241-2/+16
|
* remove test "goto err"Ulf Möller2000-02-241-2/+0
|
* New make target "report" to run util/selftest.plUlf Möller2000-02-231-2/+13
|
* *** empty log message ***Ulf Möller2000-02-231-2/+2
|
* Run the test suite and generate a report.Ulf Möller2000-02-231-0/+151