OpenSSL::Test: bring back the relative paths
authorRichard Levitte <levitte@openssl.org>
Tue, 21 Jan 2020 06:53:40 +0000 (07:53 +0100)
committerRichard Levitte <levitte@openssl.org>
Mon, 27 Jan 2020 07:51:11 +0000 (08:51 +0100)
commitc8943eb04ae41506ec8a1869103e2e1dec6bfcd8
tree3679e9daca88e90b4f1b8b041b20bed4cdf925d2
parentcc7c6eb8135be665d0acc176a5963e1eaf52e4e2
OpenSSL::Test: bring back the relative paths

Because there was a bug in File::Spec::Unix' abs2rel when it was given
relative paths as both PATH and BASE arguments, the directories we
deal with were made to be all absolute.  Unfortunately, this meant
getting paths in our verbose test output which are difficult to use
anywhere else (such as a separate test build made for comparison), due
to the constant need to edit all the paths all the time.

We're therefore getting back the relative paths, by doing an extra
abs2rel() in __srctop_file, __srctop_dir, __bldtop_file and
__bldtop_dir, with a 'Cwd::getcwd' call as BASE argument.

Fixes #10628

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/10913)

(cherry picked from commit 612539e8a678c6099131dfd0e5e4b85fa774eb1a)
util/perl/OpenSSL/Test.pm