*** empty log message ***
authorDavid Schleef <ds@schleef.org>
Sat, 25 Nov 2000 04:19:35 +0000 (04:19 +0000)
committerDavid Schleef <ds@schleef.org>
Sat, 25 Nov 2000 04:19:35 +0000 (04:19 +0000)
demo/Makefile
testing/Makefile
testing/main.c

index e93cca9b6bccf681ac8a0470c6da6bf29b34fbe1..5a2d19f901c5a88d4a10d100c6a87d2c54e5ad4b 100644 (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))
 
index 14b71ccc05967396e30e00f20b5accbacb996d04..46c665457eeb7b40b91114f44ae520132c1fda13 100644 (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)
 
index af6c7008ffe01479230ffcfa543df568da6d813b..e8e42e3acb4409ca9542c4809f68a6209e7b08b2 100644 (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]);