Run util/openssl-format-source -v -c .

Reviewed-by: Tim Hudson <tjh@openssl.org>
This commit is contained in:
Matt Caswell
2015-01-22 03:40:55 +00:00
parent 22b52164aa
commit 0f113f3ee4
1054 changed files with 278488 additions and 279856 deletions

View File

@@ -5,15 +5,15 @@
/* Simple error test routine */
void a_test_function(void)
{
TESTerr(TEST_F_A_TEST_FUNCTION, TEST_R_TEST_REASON_CODE);
TESTerr(TEST_F_A_TEST_FUNCTION, TEST_R_ANOTHER_TEST_REASON_CODE);
ERR_add_error_data(1, "some additional error data");
}
{
TESTerr(TEST_F_A_TEST_FUNCTION, TEST_R_TEST_REASON_CODE);
TESTerr(TEST_F_A_TEST_FUNCTION, TEST_R_ANOTHER_TEST_REASON_CODE);
ERR_add_error_data(1, "some additional error data");
}
int main(int argc, char **argv)
{
ERR_load_TEST_strings();
a_test_function();
ERR_print_errors_fp(stderr);
}
{
ERR_load_TEST_strings();
a_test_function();
ERR_print_errors_fp(stderr);
}