aboutsummaryrefslogtreecommitdiff
path: root/sys/tests
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
committerWarner Losh <imp@FreeBSD.org>2023-08-16 17:54:36 +0000
commit685dc743dc3b5645e34836464128e1c0558b404b (patch)
tree39ec624f59d1c16f70e670cb77f8a87ec8a2b30a /sys/tests
parente5d258c9e599d2b2fe642e678091cac5da8a10d1 (diff)
Diffstat (limited to 'sys/tests')
-rw-r--r--sys/tests/callout_test.h1
-rw-r--r--sys/tests/callout_test/callout_test.c2
-rw-r--r--sys/tests/epoch/epoch_test.c2
-rw-r--r--sys/tests/fib_lookup/fib_lookup.c1
-rw-r--r--sys/tests/framework/kern_testfrwk.c2
-rw-r--r--sys/tests/kern_testfrwk.h1
6 files changed, 0 insertions, 9 deletions
diff --git a/sys/tests/callout_test.h b/sys/tests/callout_test.h
index a30b2ad95fe8..60a02f0c7b56 100644
--- a/sys/tests/callout_test.h
+++ b/sys/tests/callout_test.h
@@ -23,7 +23,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *__FBSDID("$FreeBSD$");
*
*/
struct callout_test {
diff --git a/sys/tests/callout_test/callout_test.c b/sys/tests/callout_test/callout_test.c
index ce585380b94a..87b546d4b42b 100644
--- a/sys/tests/callout_test/callout_test.c
+++ b/sys/tests/callout_test/callout_test.c
@@ -23,8 +23,6 @@
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/tests/epoch/epoch_test.c b/sys/tests/epoch/epoch_test.c
index 2359a785c5f8..e34b5de1c422 100644
--- a/sys/tests/epoch/epoch_test.c
+++ b/sys/tests/epoch/epoch_test.c
@@ -25,8 +25,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/types.h>
#include <sys/proc.h>
diff --git a/sys/tests/fib_lookup/fib_lookup.c b/sys/tests/fib_lookup/fib_lookup.c
index ca3c27aa70c3..0500d257ba9e 100644
--- a/sys/tests/fib_lookup/fib_lookup.c
+++ b/sys/tests/fib_lookup/fib_lookup.c
@@ -26,7 +26,6 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
#include "opt_inet.h"
#include "opt_inet6.h"
diff --git a/sys/tests/framework/kern_testfrwk.c b/sys/tests/framework/kern_testfrwk.c
index db3fcfc7fd80..19714fa76f52 100644
--- a/sys/tests/framework/kern_testfrwk.c
+++ b/sys/tests/framework/kern_testfrwk.c
@@ -24,8 +24,6 @@
*
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
diff --git a/sys/tests/kern_testfrwk.h b/sys/tests/kern_testfrwk.h
index dbb4733df962..8cd2ac5c3b3a 100644
--- a/sys/tests/kern_testfrwk.h
+++ b/sys/tests/kern_testfrwk.h
@@ -21,7 +21,6 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *__FBSDID("$FreeBSD$");
*
*/
#ifndef _SYS_KERN_TESTFRWKT_H_