diff options
author | Richard Levitte <levitte@openssl.org> | 2020-02-12 20:22:42 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-02-18 09:45:51 +0100 |
commit | f0790d4d2f92373f68f5b3097eb326505c937831 (patch) | |
tree | 5fafe4d69ecb487848a6f8405435c08043f6719a /.gitignore | |
parent | DOC: Add documentation related to X509_LOOKUPs (diff) | |
download | openssl-f0790d4d2f92373f68f5b3097eb326505c937831.tar.xz openssl-f0790d4d2f92373f68f5b3097eb326505c937831.zip |
TEST: Create test specific output directories
We had all tests run with test/test-runs/ as working directory, and
tests cleaned up after themselves... which is well and good, until
you want to have a look at what went wrong when a complex test fails,
and you have to recreate everything it does manually.
To remedy this, we have OpenSSL::Test create the result directory
dynamically (and cleaning it up first if it's already there) and let
the test recipe have that as working directory.
Test recipes are now encouraged to name their diverse output files
uniquely, and not to clean them up, to allow a developer to have a
look at the files that were produced.
With continuous integration that allows this, the result directories
could also be archived and be left as a build artifact.
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/11080)
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 52c845300b..a75914092f 100644 --- a/.gitignore +++ b/.gitignore @@ -101,7 +101,7 @@ doc/man1/openssl-x509.pod /providers/fipsinstall.conf # Certain files that get created by tests on the fly -/test/test-runs +/test-runs /test/buildtest_* # Fuzz stuff. |