X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Funit%2Ftest_session.c;h=78f58290a9fb004c080615c59e7e65864faaf2fc;hb=318a73cce5c3e7a243c0d7f6a337c4aeb4bc6f6c;hp=507f665e02e13fdbb4f24565286b7929af8d8372;hpb=44cdb3a261262ebabea3fb0cae9360ac05e66f2c;p=lttng-tools.git diff --git a/tests/unit/test_session.c b/tests/unit/test_session.c index 507f665e0..78f58290a 100644 --- a/tests/unit/test_session.c +++ b/tests/unit/test_session.c @@ -1,23 +1,11 @@ /* - * Copyright (c) 2011 David Goulet + * Copyright (C) 2011 EfficiOS Inc. * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * as published by the Free Software Foundation; only version 2 - * of the License. + * SPDX-License-Identifier: GPL-2.0-only * - * This program 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., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include -#include #include #include #include @@ -28,6 +16,7 @@ #include +#include #include #include #include @@ -46,11 +35,6 @@ static struct ltt_session_list *session_list; -/* For error.h */ -int lttng_opt_quiet = 1; -int lttng_opt_verbose = 0; -int lttng_opt_mi; - static const char alphanum[] = "0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" @@ -77,7 +61,7 @@ static char *get_random_string(void) /* * Return 0 if session name is found, else -1 */ -static int find_session_name(char *name) +static int find_session_name(const char *name) { struct ltt_session *iter; @@ -121,7 +105,7 @@ static void empty_session_list(void) /* * Test creation of 1 session */ -static int create_one_session(char *name) +static int create_one_session(const char *name) { int ret; enum lttng_error_code ret_code; @@ -346,7 +330,7 @@ int main(int argc, char **argv) plan_tests(NUM_TESTS); - health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); + the_health_sessiond = health_app_create(NR_HEALTH_SESSIOND_TYPES); ht_cleanup_thread = launch_ht_cleanup_thread(); assert(ht_cleanup_thread); lttng_thread_put(ht_cleanup_thread);