Don't run test_conf in cross compiled builds
[openssl.git] / test / recipes / 04-test_conf.t
index c28bcb170636ae56dff65cc61e6c35c0c2f75475..9103cbc8eb22d670cecd91d7b72e0d86a4972f4a 100644 (file)
@@ -10,6 +10,7 @@ use strict;
 use warnings;
 
 use OpenSSL::Test qw(:DEFAULT data_file);
+use OpenSSL::Test::Utils;
 use File::Compare qw(compare_text);
 
 setup('test_conf');
@@ -19,6 +20,9 @@ my %input_result = (
     '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) {