Changeset 0e2eee1 in mainline


Ignore:
Timestamp:
2023-11-30T17:08:31Z (5 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master, topic/simplify-dev-export
Children:
8f04992
Parents:
ef4d684
Message:

Move ipc_test to a separate library

Location:
uspace
Files:
2 added
5 edited
3 moved

Legend:

Unmodified
Added
Removed
  • uspace/app/hbench/meson.build

    ref4d684 r0e2eee1  
    11#
    2 # Copyright (c) 2018 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# All rights reserved.
    44#
     
    2727#
    2828
    29 deps = [ 'math' ]
     29deps = [ 'math', 'ipctest' ]
    3030src = files(
    3131        'benchlist.c',
  • uspace/app/tester/meson.build

    ref4d684 r0e2eee1  
    11#
    2 # Copyright (c) 2021 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# Copyright (c) 2005 Martin Decky
    44# Copyright (c) 2007 Jakub Jermar
     
    2929#
    3030
    31 deps = [ 'block', 'codepage', 'drv', 'math' ]
     31deps = [ 'block', 'codepage', 'drv', 'math', 'ipctest' ]
    3232src = files(
    3333        'tester.c',
  • uspace/lib/c/meson.build

    ref4d684 r0e2eee1  
    9696        'generic/errno.c',
    9797        'generic/inttypes.c',
    98         'generic/ipc_test.c',
    9998        'generic/loc.c',
    10099        'generic/string.c',
  • uspace/lib/ipctest/include/ipc/ipc_test.h

    ref4d684 r0e2eee1  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libcipc
     29/** @addtogroup libipctest
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef _LIBC_IPC_IPC_TEST_H_
    36 #define _LIBC_IPC_IPC_TEST_H_
     35#ifndef _LIBIPCTEST_IPC_IPC_TEST_H_
     36#define _LIBIPCTEST_IPC_IPC_TEST_H_
    3737
    3838#include <ipc/common.h>
  • uspace/lib/ipctest/include/ipc_test.h

    ref4d684 r0e2eee1  
    11/*
    2  * Copyright (c) 2018 Jiri Svoboda
     2 * Copyright (c) 2023 Jiri Svoboda
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 /** @addtogroup libc
     29/** @addtogroup libipctest
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef _LIBC_IPC_TEST_H_
    36 #define _LIBC_IPC_TEST_H_
     35#ifndef _LIBIPCTEST_H_
     36#define _LIBIPCTEST_H_
    3737
    3838#include <async.h>
  • uspace/lib/meson.build

    ref4d684 r0e2eee1  
    6868        'gfx',
    6969        'http',
     70        'ipctest',
    7071        'label',
    7172        'math',
  • uspace/srv/test/ipc-test/meson.build

    ref4d684 r0e2eee1  
    11#
    2 # Copyright (c) 2018 Jiri Svoboda
     2# Copyright (c) 2023 Jiri Svoboda
    33# All rights reserved.
    44#
     
    2727#
    2828
     29deps = [ 'ipctest' ]
    2930src = files('main.c')
Note: See TracChangeset for help on using the changeset viewer.