Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Aug 2009 14:50:58 GMT
From:      Jonathan Anderson <jona@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 167926 for review
Message-ID:  <200908281450.n7SEowXt019731@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=167926

Change 167926 by jona@jona-trustedbsd-belle-vmware on 2009/08/28 14:50:35

	Regression testing for fcntl()

Affected files ...

.. //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/Makefile#2 edit
.. //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.c#2 edit
.. //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.h#2 edit
.. //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test_fcntl.c#1 add

Differences ...

==== //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/Makefile#2 (text+ko) ====

@@ -1,6 +1,6 @@
 PROG=	cap_test
 SRCS=	cap_test.c cap_test_capabilities.c cap_test_syscalls.c \
-	cap_test_sysctl.c
+	cap_test_sysctl.c cap_test_fcntl.c
 WARNS=	3
 NO_MAN=
 

==== //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.c#2 (text+ko) ====

@@ -25,7 +25,7 @@
  */
 
 #include <sys/cdefs.h>
-__FBSDID("$P4: //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.c#1 $");
+__FBSDID("$P4: //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.c#2 $");
 
 #include <stdlib.h>
 
@@ -38,5 +38,6 @@
 	test_capabilities();
 	test_syscalls();
 	test_sysctl();
+	test_fcntl();
 	exit(0);
 }

==== //depot/projects/trustedbsd/capabilities/src/tools/regression/security/cap_test/cap_test.h#2 (text+ko) ====

@@ -30,5 +30,6 @@
 void	test_capabilities(void);
 void	test_syscalls(void);
 void	test_sysctl(void);
+void	test_fcntl(void);
 
 #endif /* CAP_TEST_H */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200908281450.n7SEowXt019731>