Update of /cvsroot/libsysio/libsysio/tests
In directory sc8-pr-cvs1:/tmp/cvs-serv10760/libsysio/tests
Modified Files:
Makefile.am
Added Files:
README help.c helper.pm populator.pl sysio_stubs.c
sysio_tests.c test_all.pl test_copy.pl test_driver.c
test_driver.h test_getcwd.pl test_list.pl test_path.pl
test_stats.pl test_stdfd.pl verifier.pl
Log Message:
Merging libsysio_tests with main
Index: Makefile.am
===================================================================
RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -w -b -B -p -r1.10 -r1.11
--- Makefile.am 14 Aug 2003 18:39:33 -0000 1.10
+++ Makefile.am 14 Aug 2003 21:16:33 -0000 1.11
@@ -1,5 +1,5 @@
noinst_PROGRAMS = test_copy test_stats test_path test_mounts test_list \
- test_getcwd test_stdfd
+ test_getcwd test_stdfd test_driver
CLEANFILES=drv_data.c
@@ -46,7 +46,8 @@ DRIVERS=$(NATIVE_DRIVER_NAME) $(INCORE_D
CMNSRC=drv_init_all.c drv_data.c
BUILT_SOURCES=drv_data.c
-
+check_PROGRAMS=test_driver
+TESTS=test_all.pl
CFL=$(AM_CFLAGS) $(AM_CPPFLAGS) \
$(NATIVE_DRIVER_CFLAGS) $(INCORE_DRIVER_CFLAGS) \
$(STDFD_DEV_CFLAGS) $(YOD_DRIVER_CFLAGS)
@@ -90,7 +91,12 @@ test_stdfd_CFLAGS=$(CFL)
test_stdfd_LDADD=$(LIBS)
test_stdfd_DEPENDENCIES=$(LIBS)
-EXTRA_DIST=gendrvdata.sh test.h
+test_driver_SOURCES=test_driver.c sysio_tests.c sysio_stubs.c help.c $(CMNSRC)
+test_driver_CFLAGS=$(CFL)
+test_driver_LDADD=$(LIBS)
+test_driver_DEPENDENCIES=$(LIBS)
+
+EXTRA_DIST=gendrvdata.sh test.h test_driver.h
drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh
test -z "drv_data.c" && rm -f drv_data.c; \
|