1*66bae5e7Schristos#! /usr/bin/env perl
2*66bae5e7Schristos# Copyright 2007-2019 The OpenSSL Project Authors. All Rights Reserved.
3*66bae5e7Schristos# Copyright Nokia 2007-2019
4*66bae5e7Schristos# Copyright Siemens AG 2015-2019
5*66bae5e7Schristos#
6*66bae5e7Schristos# Licensed under the Apache License 2.0 (the "License").  You may not use
7*66bae5e7Schristos# this file except in compliance with the License.  You can obtain a copy
8*66bae5e7Schristos# in the file LICENSE in the source distribution or at
9*66bae5e7Schristos# https://www.openssl.org/source/license.html
10*66bae5e7Schristos
11*66bae5e7Schristosuse strict;
12*66bae5e7Schristosuse OpenSSL::Test qw/:DEFAULT data_file/;
13*66bae5e7Schristosuse OpenSSL::Test::Utils;
14*66bae5e7Schristos
15*66bae5e7Schristossetup("test_cmp_asn");
16*66bae5e7Schristos
17*66bae5e7Schristosplan skip_all => "This test is not supported in a no-cmp build"
18*66bae5e7Schristos    if disabled("cmp");
19*66bae5e7Schristos
20*66bae5e7Schristosplan tests => 1;
21*66bae5e7Schristos
22*66bae5e7Schristosok(run(test(["cmp_asn_test"])));
23