From: Adam Dickmeiss Date: Mon, 23 Apr 2007 07:29:34 +0000 (+0000) Subject: Rename test functions a bit X-Git-Tag: PAZPAR2.1.0.0~231 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=ea13549eb4841d47952d7cd79295bfd8a1ad5ea5;hp=9686721c3a4620fb52592e575f4e53bb531e8e8a;p=pazpar2-moved-to-github.git Rename test functions a bit --- diff --git a/src/test_sel_thread.c b/src/test_sel_thread.c index 2a90e78..5f98390 100644 --- a/src/test_sel_thread.c +++ b/src/test_sel_thread.c @@ -1,4 +1,4 @@ -/* $Id: test_sel_thread.c,v 1.3 2007-04-20 11:56:37 adam Exp $ +/* $Id: test_sel_thread.c,v 1.4 2007-04-23 07:29:34 adam Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -42,7 +42,7 @@ static void work_handler(void *vp) } /** \brief see if we can create and destroy without problems */ -static void test_1(void) +static void test_create_destroy(void) { int fd; sel_thread_t p = sel_thread_create(work_handler, &fd); @@ -94,7 +94,7 @@ void iochan_handler(struct iochan *i, int event) } /** brief use the fd for something */ -static void test_2(void) +static void test_for_real_work(void) { int thread_fd; sel_thread_t p = sel_thread_create(work_handler, &thread_fd); @@ -116,8 +116,8 @@ int main(int argc, char **argv) YAZ_CHECK_INIT(argc, argv); YAZ_CHECK_LOG(); - test_1(); - test_2(); + test_create_destroy(); + test_for_real_work(); YAZ_CHECK_TERM; }