test_conf was failing in travis for mingw builds. We run these on linux
via wine. However due to line break differences the tests were failing.
We just skip these in a cross compiled build.
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
(Merged from https://github.com/openssl/openssl/pull/10689)
use warnings;
use OpenSSL::Test qw(:DEFAULT data_file);
+use OpenSSL::Test::Utils;
use File::Compare qw(compare_text);
setup('test_conf');
'dollarid_off.conf' => 'dollarid_off.txt',
);
+plan skip_all => 'This is unsupported for cross compiled configurations'
+ if config('CROSS_COMPILE');
+
plan tests => 2 * scalar(keys %input_result);
foreach (sort keys %input_result) {