99-test_ecstress.t 603 B

1234567891011121314151617181920212223
  1. #! /usr/bin/env perl
  2. # Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  5. # this file except in compliance with the License. You can obtain a copy
  6. # in the file LICENSE in the source distribution or at
  7. # https://www.openssl.org/source/license.html
  8. use strict;
  9. use warnings;
  10. use OpenSSL::Test;
  11. use OpenSSL::Test::Utils;
  12. setup("test_ecstress");
  13. plan tests => 1;
  14. SKIP: {
  15. skip "Skipping EC stress test", 1
  16. if ! exists $ENV{'ECSTRESS'};
  17. ok(run(test(["ecstresstest"])), "running ecstresstest");
  18. }