mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-07-23 07:51:52 +08:00
media01: New test
This commit is contained in:
parent
8179d4c68f
commit
d0ecc91ac1
11
Makefile
11
Makefile
@ -1418,6 +1418,17 @@ TESTS += $(TEST_SMP01)
|
||||
O_FILES += $(TEST_SMP01_O_FILES)
|
||||
D_FILES += $(TEST_SMP01_D_FILES)
|
||||
RUN_TESTS += $(TEST_SMP01)
|
||||
|
||||
TEST_MEDIA01 = testsuite/media01/media01.exe
|
||||
TEST_MEDIA01_O_FILES =
|
||||
TEST_MEDIA01_D_FILES =
|
||||
TEST_MEDIA01_O_FILES += testsuite/media01/test_main.o
|
||||
TEST_MEDIA01_D_FILES += testsuite/media01/test_main.d
|
||||
$(TEST_MEDIA01): $(TEST_MEDIA01_O_FILES) $(LIB)
|
||||
$(LINK.c) -Wl,-Map,testsuite/media01/media01.map $^ -lm -lz -o $@
|
||||
TESTS += $(TEST_MEDIA01)
|
||||
O_FILES += $(TEST_MEDIA01_O_FILES)
|
||||
D_FILES += $(TEST_MEDIA01_D_FILES)
|
||||
LIB_C_FILES += dhcpcd/arp.c
|
||||
dhcpcd/arp.o: dhcpcd/arp.c
|
||||
$(CC) $(CPPFLAGS) $(CFLAGS) -D__FreeBSD__ -DTHERE_IS_NO_FORK -DMASTER_ONLY -DINET -DINET6 -c $< -o $@
|
||||
|
@ -2538,6 +2538,7 @@ tests.addTest('condvar01', ['test_main'])
|
||||
tests.addTest('ppp01', ['test_main'], runTest = False)
|
||||
tests.addTest('zerocopy01', ['test_main'], runTest = False, netTest = True)
|
||||
tests.addTest('smp01', ['test_main'])
|
||||
tests.addTest('media01', ['test_main'], runTest = False)
|
||||
|
||||
dhcpcd = Module('dhcpcd')
|
||||
dhcpcd.addSourceFiles(
|
||||
|
@ -48,6 +48,10 @@ rtems_task Init(
|
||||
|
||||
on_exit( default_on_exit, NULL );
|
||||
|
||||
#ifdef DEFAULT_EARLY_INITIALIZATION
|
||||
early_initialization();
|
||||
#endif
|
||||
|
||||
/* Let other tasks run to complete background work */
|
||||
default_set_self_prio( RTEMS_MAXIMUM_PRIORITY - 1 );
|
||||
|
||||
|
160
testsuite/media01/test_main.c
Normal file
160
testsuite/media01/test_main.c
Normal file
@ -0,0 +1,160 @@
|
||||
/*
|
||||
* Copyright (c) 2010-2015 embedded brains GmbH. All rights reserved.
|
||||
*
|
||||
* embedded brains GmbH
|
||||
* Dornierstr. 4
|
||||
* 82178 Puchheim
|
||||
* Germany
|
||||
* <rtems@embedded-brains.de>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <rtems/bdbuf.h>
|
||||
#include <rtems/console.h>
|
||||
#include <rtems/media.h>
|
||||
#include <rtems/shell.h>
|
||||
|
||||
#define TEST_NAME "LIBBSD MEDIA 1"
|
||||
|
||||
static rtems_status_code
|
||||
media_listener(rtems_media_event event, rtems_media_state state,
|
||||
const char *src, const char *dest, void *arg)
|
||||
{
|
||||
printf(
|
||||
"media listener: event = %s, state = %s, src = %s",
|
||||
rtems_media_event_description(event),
|
||||
rtems_media_state_description(state),
|
||||
src
|
||||
);
|
||||
|
||||
if (dest != NULL) {
|
||||
printf(", dest = %s", dest);
|
||||
}
|
||||
|
||||
if (arg != NULL) {
|
||||
printf(", arg = %p\n", arg);
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
|
||||
if (event == RTEMS_MEDIA_EVENT_MOUNT && state == RTEMS_MEDIA_STATE_SUCCESS) {
|
||||
char name[256];
|
||||
int n = snprintf(&name[0], sizeof(name), "%s/test.txt", dest);
|
||||
FILE *file;
|
||||
|
||||
assert(n < (int) sizeof(name));
|
||||
|
||||
printf("write file %s\n", &name[0]);
|
||||
file = fopen(&name[0], "w");
|
||||
if (file != NULL) {
|
||||
const char hello[] = "Hello, world!\n";
|
||||
|
||||
fwrite(&hello[0], sizeof(hello) - 1, 1, file);
|
||||
fclose(file);
|
||||
}
|
||||
}
|
||||
|
||||
return RTEMS_SUCCESSFUL;
|
||||
}
|
||||
|
||||
static void
|
||||
test_main(void)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
|
||||
sc = rtems_shell_init("SHLL", 16 * 1024, 1, CONSOLE_DEVICE_NAME,
|
||||
false, true, NULL);
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
|
||||
exit(0);
|
||||
}
|
||||
|
||||
#define DEFAULT_EARLY_INITIALIZATION
|
||||
|
||||
static void
|
||||
early_initialization(void)
|
||||
{
|
||||
rtems_status_code sc;
|
||||
|
||||
sc = rtems_bdbuf_init();
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
|
||||
sc = rtems_media_initialize();
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
|
||||
sc = rtems_media_listener_add(media_listener, NULL);
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
|
||||
sc = rtems_media_server_initialize(
|
||||
200,
|
||||
32 * 1024,
|
||||
RTEMS_DEFAULT_MODES,
|
||||
RTEMS_DEFAULT_ATTRIBUTES
|
||||
);
|
||||
assert(sc == RTEMS_SUCCESSFUL);
|
||||
}
|
||||
|
||||
#include <bsp/nexus-devices.h>
|
||||
|
||||
#define CONFIGURE_FILESYSTEM_DOSFS
|
||||
|
||||
#include <rtems/bsd/test/default-init.h>
|
||||
|
||||
#define CONFIGURE_SHELL_COMMANDS_INIT
|
||||
|
||||
#include <bsp/irq-info.h>
|
||||
|
||||
#include <rtems/netcmds-config.h>
|
||||
|
||||
#define CONFIGURE_SHELL_USER_COMMANDS \
|
||||
&bsp_interrupt_shell_command, \
|
||||
&rtems_shell_BSD_Command
|
||||
|
||||
#define CONFIGURE_SHELL_COMMAND_CPUUSE
|
||||
#define CONFIGURE_SHELL_COMMAND_PERIODUSE
|
||||
#define CONFIGURE_SHELL_COMMAND_STACKUSE
|
||||
#define CONFIGURE_SHELL_COMMAND_PROFREPORT
|
||||
|
||||
#define CONFIGURE_SHELL_COMMAND_CP
|
||||
#define CONFIGURE_SHELL_COMMAND_PWD
|
||||
#define CONFIGURE_SHELL_COMMAND_LS
|
||||
#define CONFIGURE_SHELL_COMMAND_LN
|
||||
#define CONFIGURE_SHELL_COMMAND_LSOF
|
||||
#define CONFIGURE_SHELL_COMMAND_CHDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_CD
|
||||
#define CONFIGURE_SHELL_COMMAND_MKDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_RMDIR
|
||||
#define CONFIGURE_SHELL_COMMAND_CAT
|
||||
#define CONFIGURE_SHELL_COMMAND_MV
|
||||
#define CONFIGURE_SHELL_COMMAND_RM
|
||||
#define CONFIGURE_SHELL_COMMAND_MALLOC_INFO
|
||||
|
||||
#define CONFIGURE_SHELL_COMMAND_FDISK
|
||||
#define CONFIGURE_SHELL_COMMAND_BLKSYNC
|
||||
#define CONFIGURE_SHELL_COMMAND_MSDOSFMT
|
||||
#define CONFIGURE_SHELL_COMMAND_DF
|
||||
|
||||
#include <rtems/shellconfig.h>
|
Loading…
x
Reference in New Issue
Block a user