git: c8b6939dfadb - main - renice: Prevent running regression tests in parallel
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 29 Sep 2022 22:29:21 UTC
The branch main has been updated by olivier (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=c8b6939dfadb6f197b15b1f59e75e06e976492d8
commit c8b6939dfadb6f197b15b1f59e75e06e976492d8
Author: Olivier Cochard <olivier@FreeBSD.org>
AuthorDate: 2022-09-29 22:21:22 +0000
Commit: Olivier Cochard <olivier@FreeBSD.org>
CommitDate: 2022-09-29 22:28:19 +0000
renice: Prevent running regression tests in parallel
renice_abs_user and renice_rel_user tests modify global state, so they
are not compatible with parallel execution.
Reviewed by: asomers
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D36720
---
usr.bin/renice/tests/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/usr.bin/renice/tests/Makefile b/usr.bin/renice/tests/Makefile
index c252e396811c..acaf383765bf 100644
--- a/usr.bin/renice/tests/Makefile
+++ b/usr.bin/renice/tests/Makefile
@@ -1,3 +1,4 @@
ATF_TESTS_SH+= renice_test
+TEST_METADATA.renice_test+= is_exclusive="true"
.include <bsd.test.mk>