From 5012a6d5c5a1aece53623370718dc082c3a95b26 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sat, 25 Nov 2000 04:19:35 +0000 Subject: [PATCH] *** empty log message *** --- demo/Makefile | 2 +- testing/Makefile | 3 ++- testing/main.c | 6 ++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/demo/Makefile b/demo/Makefile index e93cca9..5a2d19f 100644 --- a/demo/Makefile +++ b/demo/Makefile @@ -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)) diff --git a/testing/Makefile b/testing/Makefile index 14b71cc..46c6654 100644 --- a/testing/Makefile +++ b/testing/Makefile @@ -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) diff --git a/testing/main.c b/testing/main.c index af6c700..e8e42e3 100644 --- a/testing/main.c +++ b/testing/main.c @@ -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]); -- 2.26.2