1*fa9f2818Schristos#! /usr/bin/env perl
2*fa9f2818Schristos# Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
3*fa9f2818Schristos#
4*fa9f2818Schristos# Licensed under the Apache License 2.0 (the "License").  You may not use
5*fa9f2818Schristos# this file except in compliance with the License.  You can obtain a copy
6*fa9f2818Schristos# in the file LICENSE in the source distribution or at
7*fa9f2818Schristos# https://www.openssl.org/source/license.html
8*fa9f2818Schristos
9*fa9f2818Schristosuse strict;
10*fa9f2818Schristosuse OpenSSL::Test;              # get 'plan'
11*fa9f2818Schristosuse OpenSSL::Test::Simple;
12*fa9f2818Schristosuse OpenSSL::Test::Utils;
13*fa9f2818Schristos
14*fa9f2818Schristossetup("test_internal_ec");
15*fa9f2818Schristos
16*fa9f2818Schristosplan skip_all => "This test is unsupported in a no-ec build"
17*fa9f2818Schristos    if disabled("ec");
18*fa9f2818Schristos
19*fa9f2818Schristossimple_test("test_internal_ec", "ec_internal_test");
20