aboutsummaryrefslogtreecommitdiff
path: root/tests/torture.c
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2018-12-05 12:09:07 +0100
committerAndreas Schneider <asn@cryptomilk.org>2018-12-07 14:08:27 +0100
commit21e252236018ce10958b0623837a48f354d5b155 (patch)
tree05ff6fcf631dbc147bd232f1eda5d7311acb1daa /tests/torture.c
parent8f887e82c75a92942dea903d9239981f20136efb (diff)
downloadlibssh-21e252236018ce10958b0623837a48f354d5b155.tar.gz
libssh-21e252236018ce10958b0623837a48f354d5b155.tar.xz
libssh-21e252236018ce10958b0623837a48f354d5b155.zip
config: Get rid of the dynamic seen array
* This makes the array constant in the session structure, avoiding allocations and frees while parsing the file * It also drops passing the seen array to all the functions, because it is already part of the passed session * The test cases are adjusted to match these changes Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'tests/torture.c')
-rw-r--r--tests/torture.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/torture.c b/tests/torture.c
index 3500cd50..1585240f 100644
--- a/tests/torture.c
+++ b/tests/torture.c
@@ -1163,6 +1163,10 @@ void torture_write_file(const char *filename, const char *data){
close(fd);
}
+void torture_reset_config(ssh_session session)
+{
+ memset(session->opts.options_seen, 0, sizeof(session->opts.options_seen));
+}
int main(int argc, char **argv) {
struct argument_s arguments;