Thread: [Libsysio-commit] HEAD: libsysio/tests Makefile.am
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2003-05-10 14:44:01
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1:/tmp/cvs-serv11508 Modified Files: Makefile.am Log Message: Mod, from Brad Hull @ Cray Inc., to support building in alternate directories. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -u -w -b -B -p -r1.8 -r1.9 --- Makefile.am 24 Mar 2003 22:09:49 -0000 1.8 +++ Makefile.am 10 May 2003 14:43:58 -0000 1.9 @@ -84,8 +84,8 @@ test_stdfd_DEPENDENCIES=$(LIBS) EXTRA_DIST=gendrvdata.sh test.h -drv_data.c: $(CONFIG_DEPENDENCIES) gendrvdata.sh +drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh test -z "drv_data.c" && rm -f drv_data.c; \ - $(SHELL) gendrvdata.sh $(DRIVERS) > drv_data.c + $(SHELL) $(top_srcdir)/tests/gendrvdata.sh $(DRIVERS) > drv_data.c include $(top_srcdir)/Rules.make |
From: Lee W. <lw...@us...> - 2004-01-21 14:44:57
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1:/tmp/cvs-serv23555/tests Modified Files: Makefile.am Log Message: A roll-up patch from CFS (Eric Mei <er...@cl...>) - intent.diff small changes on intent related behavior. I simply follow the lustre kernel code here. - open() need to pass down param 'flags'. - 'setattr' related syscalls, like chown/chmod/utime/..., don't need intent during path resolution. - sockets.diff your socket driver. - nativefs.diff only add fcntl code into native driver. not sure whether it's complete, but ok for current testing. - trace.diff this patch add SYSIO_ENTER/SYSIO_LEAVE macros. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.16 retrieving revision 1.17 diff -u -w -b -B -p -r1.16 -r1.17 --- Makefile.am 16 Dec 2003 15:43:15 -0000 1.16 +++ Makefile.am 21 Jan 2004 14:44:54 -0000 1.17 @@ -35,7 +35,16 @@ YOD_DRIVER_NAME= YOD_DRIVER_CFLAGS= endif -DRIVERS=$(NATIVE_DRIVER_NAME) $(INCORE_DRIVER_NAME) $(YOD_DRIVER_NAME) $(STFD_DEV_NAME) +if WITH_SOCKETS_DRIVER +SOCKETS_DRIVER_NAME=sockets +SOCKETS_DRIVER_CFLAGS= -I$(top_srcdir)/drivers/sockets +else +SOCKETS_DRIVER_NAME= +SOCKETS_DRIVER_CFLAGS= +endif + +DRIVERS=$(NATIVE_DRIVER_NAME) $(INCORE_DRIVER_NAME) $(YOD_DRIVER_NAME) \ + $(STFD_DEV_NAME) $(SOCKETS_DRIVER_NAME) CMNSRC=drv_init_all.c drv_data.c |
From: Lee W. <lw...@us...> - 2004-10-24 20:53:56
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16408/tests Modified Files: Makefile.am Log Message: The changes to internalize the initialization of the sockets driver means the, similar, init in the test code was redundant. That's fatal. Fixed with this mod. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.21 retrieving revision 1.22 diff -u -w -b -B -p -r1.21 -r1.22 --- Makefile.am 14 Oct 2004 14:59:29 -0000 1.21 +++ Makefile.am 24 Oct 2004 20:53:46 -0000 1.22 @@ -28,16 +28,8 @@ YOD_DRIVER_NAME= YOD_DRIVER_CFLAGS= endif -if WITH_SOCKETS_DRIVER -SOCKETS_DRIVER_NAME=sockets -SOCKETS_DRIVER_CFLAGS= -I$(top_srcdir)/drivers/sockets -else -SOCKETS_DRIVER_NAME= -SOCKETS_DRIVER_CFLAGS= -endif - DRIVERS=$(NATIVE_DRIVER_NAME) $(INCORE_DRIVER_NAME) $(YOD_DRIVER_NAME) \ - $(STFD_DEV_NAME) $(SOCKETS_DRIVER_NAME) + $(STFD_DEV_NAME) CMNSRC=startup.c drv_init_all.c drv_data.c |
From: Lee W. <lw...@us...> - 2005-02-03 20:37:14
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23774 Modified Files: Makefile.am Log Message: All the per test LDADD directives caused the libraries to be specified twice during the build. This is not good if they contain CTOR directives as they go off twice, usually are initializers and, so, init twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.22 retrieving revision 1.23 diff -u -w -b -B -p -r1.22 -r1.23 --- Makefile.am 24 Oct 2004 20:53:46 -0000 1.22 +++ Makefile.am 3 Feb 2005 20:37:05 -0000 1.23 @@ -50,57 +50,46 @@ LIBS=$(LIBBUILD_DIR)/libsysio.a test_copy_SOURCES=test_copy.c $(CMNSRC) test_copy_CFLAGS=$(CFL) -test_copy_LDADD=$(LIBS) test_copy_DEPENDENCIES=$(LIBS) test_stats_SOURCES=test_stats.c $(CMNSRC) test_stats_CFLAGS=$(CFL) -test_stats_LDADD=$(LIBS) test_stats_DEPENDENCIES=$(LIBS) test_path_SOURCES=test_path.c $(CMNSRC) test_path_CFLAGS=$(CFL) -test_path_LDADD=$(LIBS) test_path_DEPENDENCIES=$(LIBS) test_list_SOURCES=test_list.c $(CMNSRC) test_list_CFLAGS=$(CFL) -test_list_LDADD=$(LIBS) test_list_DEPENDENCIES=$(LIBS) test_getcwd_SOURCES=test_getcwd.c $(CMNSRC) test_getcwd_CFLAGS=$(CFL) -test_getcwd_LDADD=$(LIBS) test_getcwd_DEPENDENCIES=$(LIBS) test_link_SOURCES=test_link.c $(CMNSRC) test_link_CFLAGS=$(CFL) -test_link_LDADD=$(LIBS) test_link_DEPENDENCIES=$(LIBS) test_unlink_SOURCES=test_unlink.c $(CMNSRC) test_unlink_CFLAGS=$(CFL) -test_unlink_LDADD=$(LIBS) test_unlink_DEPENDENCIES=$(LIBS) test_rename_SOURCES=test_rename.c $(CMNSRC) test_rename_CFLAGS=$(CFL) -test_rename_LDADD=$(LIBS) test_rename_DEPENDENCIES=$(LIBS) test_regions_SOURCES=test_regions.c $(CMNSRC) test_regions_CFLAGS=$(CFL) -test_regions_LDADD=$(LIBS) test_regions_DEPENDENCIES=$(LIBS) 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) test_stddir_SOURCES=test_stddir.c $(CMNSRC) test_stddir_CFLAGS=$(CFL) -test_stddir_LDADD=$(LIBS) test_stddir_DEPENDENCIES=$(LIBS) drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh |
From: Lee W. <lw...@us...> - 2007-04-30 23:24:16
|
Update of /cvsroot/libsysio/libsysio/tests In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2987/tests Modified Files: Makefile.am Log Message: Restore support of statvfs{,64}. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.28 retrieving revision 1.29 diff -u -w -b -B -p -r1.28 -r1.29 --- Makefile.am 14 Mar 2007 21:03:12 -0000 1.28 +++ Makefile.am 30 Apr 2007 23:24:13 -0000 1.29 @@ -1,7 +1,7 @@ noinst_PROGRAMS = test_copy test_stats test_path test_list \ test_getcwd test_link test_unlink test_symlink test_rename \ test_regions test_stddir test_fcntl_lock test_mknod test_mkdir \ - test_chown + test_chown test_statvfs CLEANFILES=drv_data.c @@ -102,6 +102,10 @@ test_chown_SOURCES=test_chown.c $(CMNSRC test_chown_CFLAGS=$(CFL) test_chown_DEPENDENCIES=$(LIBS) +test_statvfs_SOURCES=test_statvfs.c $(CMNSRC) +test_statvfs_CFLAGS=$(CFL) +test_statvfs_DEPENDENCIES=$(LIBS) + drv_data.c: $(CONFIG_DEPENDENCIES) $(top_srcdir)/tests/gendrvdata.sh test -z "drv_data.c" && rm -f drv_data.c; \ $(SHELL) $(top_srcdir)/tests/gendrvdata.sh $(DRIVERS) > drv_data.c |
From: Lee W. <lw...@us...> - 2009-01-28 16:15:43
|
Update of /cvsroot/libsysio/libsysio/tests In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32064 Modified Files: Makefile.am Log Message: Had specified test_stddir twice. This caused a warning but no problem. Got rid of the redundant one, anyway. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.32 retrieving revision 1.33 diff -u -w -b -B -p -r1.32 -r1.33 --- Makefile.am 28 Jan 2009 15:54:36 -0000 1.32 +++ Makefile.am 28 Jan 2009 16:15:35 -0000 1.33 @@ -5,7 +5,7 @@ STATVFS_PROG= endif noinst_PROGRAMS = test_copy test_stats test_path test_list \ - test_getcwd test_link test_unlink test_symlink test_stddir \ + test_getcwd test_link test_unlink test_symlink \ test_rename test_regions test_stddir test_fcntl_lock test_mknod \ test_mkdir test_chown $(STATVFS_PROG) |
From: Lee W. <lw...@us...> - 2009-01-28 16:17:27
|
Update of /cvsroot/libsysio/libsysio/tests In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32227 Modified Files: Makefile.am Log Message: Last change got rid of *one* of the redundant test_stddir specifications; Oops. This one gets the second. Index: Makefile.am =================================================================== RCS file: /cvsroot/libsysio/libsysio/tests/Makefile.am,v retrieving revision 1.33 retrieving revision 1.34 diff -u -w -b -B -p -r1.33 -r1.34 --- Makefile.am 28 Jan 2009 16:15:35 -0000 1.33 +++ Makefile.am 28 Jan 2009 16:17:20 -0000 1.34 @@ -71,10 +71,6 @@ test_symlink_SOURCES=test_symlink.c $(CM test_symlink_CFLAGS=$(CFL) test_symlink_DEPENDENCIES=$(LIBS) -test_stddir_SOURCES=test_stddir.c $(CMNSRC) -test_stddir_CFLAGS=$(CFL) -test_stddir_DEPENDENCIES=$(LIBS) - test_rename_SOURCES=test_rename.c $(CMNSRC) test_rename_CFLAGS=$(CFL) test_rename_DEPENDENCIES=$(LIBS) |