提交 b9a75806 编写于 作者: M Matt Caswell

Fix no-filenames

If built with no-filenames then we shouldn't test this functionality in
the test suite.
Reviewed-by: NTomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/9544)
上级 f92e0815
......@@ -47,19 +47,24 @@ static int vdata_appends(void)
/* Test that setting a platform error sets the right values. */
static int platform_error(void)
{
const char *file, *f, *data;
int line;
const char *f, *data;
int l;
unsigned long e;
#ifndef OPENSSL_NO_FILENAMES
const char *file;
int line;
file = __FILE__;
line = __LINE__ + 1; /* The error is generated on the next line */
line = __LINE__ + 2; /* The error is generated on the ERR_raise_data line */
#endif
ERR_raise_data(ERR_LIB_SYS, ERR_R_INTERNAL_ERROR,
"calling exit()");
if (!TEST_ulong_ne(e = ERR_get_error_line_data(&f, &l, &data, NULL), 0)
|| !TEST_int_eq(ERR_GET_REASON(e), ERR_R_INTERNAL_ERROR)
#ifndef OPENSSL_NO_FILENAMES
|| !TEST_int_eq(l, line)
|| !TEST_str_eq(f, file)
#endif
|| !TEST_str_eq(data, "calling exit()"))
return 0;
return 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册