test_options.c 608 B

123456789101112131415161718192021
  1. /*
  2. * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (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. */
  9. #include "../testutil.h"
  10. #include "tu_local.h"
  11. /* An overridable list of command line options */
  12. const OPTIONS *test_get_options(void)
  13. {
  14. static const OPTIONS default_options[] = {
  15. OPT_TEST_OPTIONS_DEFAULT_USAGE,
  16. { NULL }
  17. };
  18. return default_options;
  19. }