2012-08-04 10:19:24 +04:00
|
|
|
/* suites.c
|
|
|
|
*
|
2013-02-06 00:44:17 +04:00
|
|
|
* Copyright (C) 2006-2013 wolfSSL Inc.
|
2012-08-04 10:19:24 +04:00
|
|
|
*
|
|
|
|
* This file is part of CyaSSL.
|
|
|
|
*
|
|
|
|
* CyaSSL is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* CyaSSL is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
2012-09-22 00:29:04 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2012-08-04 10:19:24 +04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2012-09-22 00:29:04 +04:00
|
|
|
#include <string.h>
|
2012-08-04 10:19:24 +04:00
|
|
|
#include <cyassl/ssl.h>
|
2012-08-07 04:14:31 +04:00
|
|
|
#include <tests/unit.h>
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
|
|
|
|
#define MAX_ARGS 40
|
2012-08-07 04:14:31 +04:00
|
|
|
#define MAX_COMMAND_SZ 240
|
|
|
|
|
2012-09-20 10:38:41 +04:00
|
|
|
#include "examples/client/client.h"
|
|
|
|
#include "examples/server/server.h"
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-08-08 02:06:53 +04:00
|
|
|
static void execute_test_case(int svr_argc, char** svr_argv,
|
|
|
|
int cli_argc, char** cli_argv)
|
2012-08-04 10:19:24 +04:00
|
|
|
{
|
2012-08-08 02:06:53 +04:00
|
|
|
func_args cliArgs = {cli_argc, cli_argv, 0, NULL};
|
|
|
|
func_args svrArgs = {svr_argc, svr_argv, 0, NULL};
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-08-07 04:14:31 +04:00
|
|
|
tcp_ready ready;
|
|
|
|
THREAD_TYPE serverThread;
|
|
|
|
char commandLine[MAX_COMMAND_SZ];
|
|
|
|
int i;
|
2013-02-15 02:09:41 +04:00
|
|
|
size_t added = 0;
|
2012-08-08 02:06:53 +04:00
|
|
|
static int tests = 1;
|
2012-08-07 04:14:31 +04:00
|
|
|
|
|
|
|
commandLine[0] = '\0';
|
2012-08-08 02:06:53 +04:00
|
|
|
for (i = 0; i < svr_argc; i++) {
|
2013-02-15 02:09:41 +04:00
|
|
|
added += strlen(svr_argv[i]) + 2;
|
|
|
|
if (added >= MAX_COMMAND_SZ) {
|
|
|
|
printf("server command line too long\n");
|
|
|
|
break;
|
|
|
|
}
|
2012-08-08 02:06:53 +04:00
|
|
|
strcat(commandLine, svr_argv[i]);
|
2012-08-07 04:14:31 +04:00
|
|
|
strcat(commandLine, " ");
|
|
|
|
}
|
2012-08-08 02:06:53 +04:00
|
|
|
printf("trying server command line[%d]: %s\n", tests, commandLine);
|
|
|
|
|
|
|
|
commandLine[0] = '\0';
|
2013-02-15 02:09:41 +04:00
|
|
|
added = 0;
|
2012-08-08 02:06:53 +04:00
|
|
|
for (i = 0; i < cli_argc; i++) {
|
2013-02-15 02:09:41 +04:00
|
|
|
added += strlen(cli_argv[i]) + 2;
|
|
|
|
if (added >= MAX_COMMAND_SZ) {
|
|
|
|
printf("client command line too long\n");
|
|
|
|
break;
|
|
|
|
}
|
2012-08-08 02:06:53 +04:00
|
|
|
strcat(commandLine, cli_argv[i]);
|
|
|
|
strcat(commandLine, " ");
|
|
|
|
}
|
|
|
|
printf("trying client command line[%d]: %s\n", tests++, commandLine);
|
2012-08-07 04:14:31 +04:00
|
|
|
|
|
|
|
InitTcpReady(&ready);
|
|
|
|
|
|
|
|
/* start server */
|
|
|
|
svrArgs.signal = &ready;
|
|
|
|
start_thread(server_test, &svrArgs, &serverThread);
|
|
|
|
wait_tcp_ready(&svrArgs);
|
|
|
|
|
|
|
|
/* start client */
|
|
|
|
client_test(&cliArgs);
|
|
|
|
|
|
|
|
/* verify results */
|
|
|
|
if (cliArgs.return_code != 0) {
|
|
|
|
printf("client_test failed\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
join_thread(serverThread);
|
|
|
|
if (svrArgs.return_code != 0) {
|
|
|
|
printf("server_test failed\n");
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
FreeTcpReady(&ready);
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-09-20 10:38:41 +04:00
|
|
|
static void test_harness(void* vargs)
|
2012-08-04 10:19:24 +04:00
|
|
|
{
|
|
|
|
func_args* args = (func_args*)vargs;
|
|
|
|
char* script;
|
2012-08-08 02:06:53 +04:00
|
|
|
long sz, len;
|
|
|
|
int cliMode = 0; /* server or client command flag, server first */
|
2012-08-04 10:19:24 +04:00
|
|
|
FILE* file;
|
2012-08-08 02:06:53 +04:00
|
|
|
char* svrArgs[MAX_ARGS];
|
|
|
|
int svrArgsSz;
|
|
|
|
char* cliArgs[MAX_ARGS];
|
|
|
|
int cliArgsSz;
|
2012-08-04 10:19:24 +04:00
|
|
|
char* cursor;
|
|
|
|
char* comment;
|
2012-09-21 02:39:15 +04:00
|
|
|
const char* fname = "tests/test.conf";
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
if (args->argc == 1) {
|
|
|
|
printf("notice: using default file %s\n", fname);
|
|
|
|
}
|
|
|
|
else if(args->argc != 2) {
|
|
|
|
printf("usage: harness [FILE]\n");
|
|
|
|
args->return_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fname = args->argv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
file = fopen(fname, "r");
|
|
|
|
if (file == NULL) {
|
|
|
|
fprintf(stderr, "unable to open %s\n", fname);
|
|
|
|
args->return_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fseek(file, 0, SEEK_END);
|
|
|
|
sz = ftell(file);
|
|
|
|
rewind(file);
|
2013-02-15 02:09:41 +04:00
|
|
|
if (sz <= 0) {
|
2012-08-04 10:19:24 +04:00
|
|
|
fprintf(stderr, "%s is empty\n", fname);
|
|
|
|
fclose(file);
|
|
|
|
args->return_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
script = (char*)malloc(sz+1);
|
|
|
|
if (script == 0) {
|
|
|
|
fprintf(stderr, "unable to allocte script buffer\n");
|
|
|
|
fclose(file);
|
|
|
|
args->return_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
len = fread(script, 1, sz, file);
|
|
|
|
if (len != sz) {
|
|
|
|
fprintf(stderr, "read error\n");
|
|
|
|
fclose(file);
|
2013-02-15 02:09:41 +04:00
|
|
|
free(script);
|
2012-08-04 10:19:24 +04:00
|
|
|
args->return_code = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(file);
|
|
|
|
script[sz] = 0;
|
|
|
|
|
|
|
|
cursor = script;
|
2012-08-08 02:06:53 +04:00
|
|
|
svrArgsSz = 1;
|
|
|
|
svrArgs[0] = args->argv[0];
|
|
|
|
cliArgsSz = 1;
|
|
|
|
cliArgs[0] = args->argv[0];
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
while (*cursor != 0) {
|
2012-08-08 02:06:53 +04:00
|
|
|
int do_it = 0;
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
switch (*cursor) {
|
|
|
|
case '\n':
|
2012-08-08 02:06:53 +04:00
|
|
|
/* A blank line triggers test case execution or switches
|
|
|
|
to client mode if we don't have the client command yet */
|
|
|
|
if (cliMode == 0)
|
|
|
|
cliMode = 1; /* switch to client mode processing */
|
|
|
|
else
|
|
|
|
do_it = 1; /* Do It, we have server and client */
|
2012-08-04 10:19:24 +04:00
|
|
|
cursor++;
|
|
|
|
break;
|
|
|
|
case '#':
|
|
|
|
/* Ignore lines that start with a #. */
|
|
|
|
comment = strsep(&cursor, "\n");
|
|
|
|
printf("%s\n", comment);
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
/* Parameters start with a -. They end in either a newline
|
2012-08-08 02:06:53 +04:00
|
|
|
* or a space. Capture until either, save in Args list. */
|
|
|
|
if (cliMode)
|
|
|
|
cliArgs[cliArgsSz++] = strsep(&cursor, " \n");
|
|
|
|
else
|
|
|
|
svrArgs[svrArgsSz++] = strsep(&cursor, " \n");
|
2012-08-04 10:19:24 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* Anything from cursor until end of line that isn't the above
|
|
|
|
* is data for a paramter. Just up until the next newline in
|
2012-08-08 02:06:53 +04:00
|
|
|
* the Args list. */
|
|
|
|
if (cliMode)
|
|
|
|
cliArgs[cliArgsSz++] = strsep(&cursor, "\n");
|
|
|
|
else
|
|
|
|
svrArgs[svrArgsSz++] = strsep(&cursor, "\n");
|
|
|
|
if (*cursor == 0) /* eof */
|
|
|
|
do_it = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (svrArgsSz == MAX_ARGS || cliArgsSz == MAX_ARGS) {
|
|
|
|
fprintf(stderr, "too many arguments, forcing test run\n");
|
|
|
|
do_it = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_it) {
|
|
|
|
execute_test_case(svrArgsSz, svrArgs, cliArgsSz, cliArgs);
|
|
|
|
svrArgsSz = 1;
|
|
|
|
cliArgsSz = 1;
|
|
|
|
cliMode = 0;
|
2012-08-04 10:19:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
free(script);
|
|
|
|
args->return_code = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int SuiteTest(void)
|
|
|
|
{
|
|
|
|
func_args args;
|
2012-11-01 02:25:39 +04:00
|
|
|
char argv0[2][80];
|
2012-08-07 04:14:31 +04:00
|
|
|
char* myArgv[2];
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-08-07 04:14:31 +04:00
|
|
|
printf(" Begin Cipher Suite Tests\n");
|
|
|
|
|
|
|
|
/* setup */
|
|
|
|
myArgv[0] = argv0[0];
|
|
|
|
myArgv[1] = argv0[1];
|
2012-08-04 10:19:24 +04:00
|
|
|
args.argv = myArgv;
|
2012-08-07 04:14:31 +04:00
|
|
|
strcpy(argv0[0], "SuiteTest");
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-10-30 02:39:42 +04:00
|
|
|
#if !defined(NO_RSA)
|
2012-08-07 04:14:31 +04:00
|
|
|
/* default case */
|
|
|
|
args.argc = 1;
|
|
|
|
printf("starting default cipher suite tests\n");
|
2012-08-04 10:19:24 +04:00
|
|
|
test_harness(&args);
|
2012-08-07 04:14:31 +04:00
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2012-10-30 02:39:42 +04:00
|
|
|
#endif
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-08-07 04:14:31 +04:00
|
|
|
/* any extra cases will need another argument */
|
|
|
|
args.argc = 2;
|
2012-08-04 10:19:24 +04:00
|
|
|
|
2012-08-07 04:14:31 +04:00
|
|
|
#ifdef OPENSSL_EXTRA
|
|
|
|
/* add openssl extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-openssl.conf");
|
|
|
|
printf("starting openssl extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
2012-10-20 07:52:22 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-30 02:39:42 +04:00
|
|
|
#if !defined(NO_RSA) && defined(HAVE_NULL_CIPHER)
|
2012-10-20 07:52:22 +04:00
|
|
|
/* add rsa null cipher suites */
|
|
|
|
strcpy(argv0[1], "tests/test-null.conf");
|
|
|
|
printf("starting null cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
2012-08-07 04:14:31 +04:00
|
|
|
}
|
2012-08-04 10:19:24 +04:00
|
|
|
#endif
|
|
|
|
|
2012-08-08 03:53:50 +04:00
|
|
|
#ifdef HAVE_HC128
|
|
|
|
/* add hc128 extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-hc128.conf");
|
|
|
|
printf("starting hc128 extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-23 04:28:46 +04:00
|
|
|
#ifdef HAVE_RABBIT
|
|
|
|
/* add rabbit extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-rabbit.conf");
|
|
|
|
printf("starting rabbit extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-10-30 02:39:42 +04:00
|
|
|
#if !defined(NO_PSK) && !defined(NO_AES)
|
2012-08-08 04:01:59 +04:00
|
|
|
/* add psk extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-psk.conf");
|
|
|
|
printf("starting psk extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2012-10-30 02:39:42 +04:00
|
|
|
#endif
|
|
|
|
|
2012-11-27 06:40:43 +04:00
|
|
|
#if !defined(NO_PSK) && defined(HAVE_NULL_CIPHER) && !defined(NO_OLD_TLS)
|
2012-10-30 02:39:42 +04:00
|
|
|
strcpy(argv0[1], "tests/test-psk-null.conf");
|
|
|
|
printf("starting psk extra null cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2012-08-08 04:01:59 +04:00
|
|
|
#endif
|
|
|
|
|
2012-11-27 06:40:43 +04:00
|
|
|
#ifdef CYASSL_LEANPSK
|
|
|
|
strcpy(argv0[1], "tests/test-leanpsk.conf");
|
|
|
|
printf("starting lean-psk cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-08 04:18:56 +04:00
|
|
|
#ifdef HAVE_NTRU
|
|
|
|
/* add ntru extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-ntru.conf");
|
|
|
|
printf("starting ntru extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-08 05:09:03 +04:00
|
|
|
#ifdef HAVE_ECC
|
|
|
|
/* add ecc extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-ecc.conf");
|
|
|
|
printf("starting ecc extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-09 02:22:41 +04:00
|
|
|
#ifdef HAVE_AESGCM
|
2012-08-09 02:37:00 +04:00
|
|
|
/* add aesgcm extra suites */
|
2012-08-09 02:22:41 +04:00
|
|
|
strcpy(argv0[1], "tests/test-aesgcm.conf");
|
|
|
|
printf("starting aesgcm extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-09 02:37:00 +04:00
|
|
|
#if defined(HAVE_AESGCM) && defined(OPENSSL_EXTRA)
|
|
|
|
/* add aesgcm openssl extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-aesgcm-openssl.conf");
|
|
|
|
printf("starting aesgcm openssl extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-09 02:57:18 +04:00
|
|
|
#if defined(HAVE_AESGCM) && defined(HAVE_ECC)
|
|
|
|
/* add aesgcm ecc extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-aesgcm-ecc.conf");
|
|
|
|
printf("starting aesgcm ecc extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-01-16 03:20:30 +04:00
|
|
|
#if defined(HAVE_AESCCM)
|
|
|
|
/* add aesccm extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-aesccm.conf");
|
2013-01-22 03:19:45 +04:00
|
|
|
printf("starting aesccm cipher suite tests\n");
|
2013-01-16 03:20:30 +04:00
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2013-01-22 03:19:45 +04:00
|
|
|
#ifdef HAVE_ECC
|
|
|
|
/* add aesccm ecc extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-aesccm-ecc.conf");
|
|
|
|
printf("starting aesccm ecc cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
2013-01-16 03:20:30 +04:00
|
|
|
#endif
|
|
|
|
|
2013-01-21 22:53:42 +04:00
|
|
|
#ifdef HAVE_CAMELLIA
|
|
|
|
/* add camellia suites */
|
|
|
|
strcpy(argv0[1], "tests/test-camellia.conf");
|
|
|
|
printf("starting camellia suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#ifdef OPENSSL_EXTRA
|
|
|
|
/* add camellia openssl extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-camellia-openssl.conf");
|
|
|
|
printf("starting camellia openssl extra suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-08-09 04:09:09 +04:00
|
|
|
#ifdef CYASSL_DTLS
|
|
|
|
/* add dtls extra suites */
|
|
|
|
strcpy(argv0[1], "tests/test-dtls.conf");
|
|
|
|
printf("starting dtls extra cipher suite tests\n");
|
|
|
|
test_harness(&args);
|
|
|
|
if (args.return_code != 0) {
|
|
|
|
printf("error from script %d\n", args.return_code);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-08-07 04:14:31 +04:00
|
|
|
printf(" End Cipher Suite Tests\n");
|
|
|
|
|
|
|
|
return args.return_code;
|
|
|
|
}
|
2012-08-04 10:19:24 +04:00
|
|
|
|
|
|
|
|