DPS_Manage/libssh2/tests/test_auth_password_fail_use...

14 lines
361 B
C
Raw Normal View History

2025-05-29 14:04:05 +08:00
/* Copyright (C) The libssh2 project and its contributors.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "runner.h"
int test(LIBSSH2_SESSION *session)
{
return test_auth_password(session, TEST_AUTH_SHOULDFAIL,
"I am the wrong username",
"my test password"); /* set in Dockerfile */
}