*** empty log message ***

This commit is contained in:
David Schleef 2000-11-25 04:19:35 +00:00
parent a01cd721f6
commit 5012a6d5c5
3 changed files with 9 additions and 2 deletions

View file

@ -6,7 +6,7 @@ LDFLAGS = -L../lib/ -lcomedi -lm
BINS=cmd tut1 tut2
MBINS=inp inpn sv eeprom_dump info outp insn antialias ao_waveform dio
MBINS=inp inpn sv eeprom_dump info outp insn antialias ao_waveform dio mmap
all: $(patsubst %,_mbins_%,$(MBINS)) $(patsubst %,_bins_%,$(BINS))

View file

@ -6,7 +6,8 @@ LDFLAGS=-L../lib/ -lcomedi
TARG=comedi_test
OBJS=main.o mode0_read.o insn_read.o info.o cmd_1.o
OBJS=main.o mode0_read.o insn_read.o info.o cmd_1.o insn_read_time.o \
cmd_2.o mmap.o
all: $(TARG)

View file

@ -26,9 +26,12 @@ int range;
int test_info(void);
int test_mode0_read(void);
int test_insn_read(void);
int test_insn_read_time(void);
int test_cmd_probe_src_mask(void);
int test_cmd_probe_fast_1chan(void);
int test_cmd_read_fast_1chan(void);
int test_cmd_fifo_depth_check(void);
int test_mmap(void);
struct test_struct{
char *name;
@ -38,9 +41,12 @@ struct test_struct tests[]={
{ "info", test_info },
{ "mode0_read", test_mode0_read },
{ "insn_read", test_insn_read },
{ "insn_read_time", test_insn_read_time },
{ "cmd_probe_src_mask", test_cmd_probe_src_mask },
{ "cmd_probe_fast_1chan", test_cmd_probe_fast_1chan },
{ "cmd_read_fast_1chan", test_cmd_read_fast_1chan },
{ "cmd_fifo_depth_check", test_cmd_fifo_depth_check },
{ "mmap", test_mmap },
};
static int n_tests = sizeof(tests)/sizeof(tests[0]);