From e1e636193db45630c7881246d25902e57c43d24e Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Tue, 16 Apr 2024 12:18:23 +0100 Subject: [PATCH] tests: move atf_python/sys/ into the tests package Reviewed by: markj MFC after: 1 week Pull Request: https://github.com/freebsd/freebsd-src/pull/1174 --- tests/atf_python/sys/Makefile | 1 + tests/atf_python/sys/net/Makefile | 1 + tests/atf_python/sys/netlink/Makefile | 1 + tests/atf_python/sys/netpfil/Makefile | 1 + tests/atf_python/sys/netpfil/ipfw/Makefile | 1 + 5 files changed, 5 insertions(+) diff --git a/tests/atf_python/sys/Makefile b/tests/atf_python/sys/Makefile index 85f66a85088..a5a1a532104 100644 --- a/tests/atf_python/sys/Makefile +++ b/tests/atf_python/sys/Makefile @@ -2,6 +2,7 @@ .PATH: ${.CURDIR} +PACKAGE=tests FILES= __init__.py SUBDIR= net netlink netpfil diff --git a/tests/atf_python/sys/net/Makefile b/tests/atf_python/sys/net/Makefile index 05b1d8afe86..70d5b1a3284 100644 --- a/tests/atf_python/sys/net/Makefile +++ b/tests/atf_python/sys/net/Makefile @@ -2,6 +2,7 @@ .PATH: ${.CURDIR} +PACKAGE=tests FILES= __init__.py rtsock.py tools.py vnet.py .include diff --git a/tests/atf_python/sys/netlink/Makefile b/tests/atf_python/sys/netlink/Makefile index 73ce5ac5026..6a40a93f3ae 100644 --- a/tests/atf_python/sys/netlink/Makefile +++ b/tests/atf_python/sys/netlink/Makefile @@ -2,6 +2,7 @@ .PATH: ${.CURDIR} +PACKAGE=tests FILES= __init__.py attrs.py base_headers.py message.py netlink.py \ netlink_generic.py netlink_route.py utils.py diff --git a/tests/atf_python/sys/netpfil/Makefile b/tests/atf_python/sys/netpfil/Makefile index 417a16d8535..47e7a0d4d4f 100644 --- a/tests/atf_python/sys/netpfil/Makefile +++ b/tests/atf_python/sys/netpfil/Makefile @@ -2,6 +2,7 @@ .PATH: ${.CURDIR} +PACKAGE=tests FILES= __init__.py SUBDIR= ipfw diff --git a/tests/atf_python/sys/netpfil/ipfw/Makefile b/tests/atf_python/sys/netpfil/ipfw/Makefile index a85dc7de941..fde36de23c9 100644 --- a/tests/atf_python/sys/netpfil/ipfw/Makefile +++ b/tests/atf_python/sys/netpfil/ipfw/Makefile @@ -2,6 +2,7 @@ .PATH: ${.CURDIR} +PACKAGE=tests FILES= __init__.py insns.py insn_headers.py ioctl.py ioctl_headers.py \ ipfw.py utils.py