Changeset d362410 in mainline


Ignore:
Timestamp:
2011-05-31T23:01:39Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
25bef0ff
Parents:
df3c6f02
git-author:
Vojtech Horky <vojtech.horky@…> (2011-05-31 23:01:39)
git-committer:
Jakub Jermar <jakub@…> (2011-05-31 23:01:39)
Message:

Add devman2 test.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    rdf3c6f02 rd362410  
    114114        rootvirt \
    115115        test1 \
    116         test2
     116        test2 \
     117        test3
    117118
    118119RD_DRV_CFG =
  • uspace/Makefile

    rdf3c6f02 rd362410  
    9090        drv/rootvirt \
    9191        drv/test1 \
    92         drv/test2
     92        drv/test2 \
     93        drv/test3
    9394
    9495## Networking
  • uspace/app/tester/Makefile

    rdf3c6f02 rd362410  
    5353        mm/malloc3.c \
    5454        devs/devman1.c \
     55        devs/devman2.c \
    5556        hw/misc/virtchar1.c \
    5657        hw/serial/serial1.c
  • uspace/app/tester/tester.c

    rdf3c6f02 rd362410  
    6767#include "hw/misc/virtchar1.def"
    6868#include "devs/devman1.def"
     69#include "devs/devman2.def"
    6970        {NULL, NULL, NULL, false}
    7071};
  • uspace/app/tester/tester.h

    rdf3c6f02 rd362410  
    100100extern const char *test_virtchar1(void);
    101101extern const char *test_devman1(void);
     102extern const char *test_devman2(void);
    102103
    103104extern test_t tests[];
  • uspace/drv/rootvirt/devices.def

    rdf3c6f02 rd362410  
    2121        .match_id = "virtual&test1"
    2222},
     23{
     24        .name = "test3",
     25        .match_id = "virtual&test3"
     26},
    2327#endif
Note: See TracChangeset for help on using the changeset viewer.