diff options
author | Zsolt Udvari <uzsolt@FreeBSD.org> | 2025-02-13 20:03:08 +0100 |
---|---|---|
committer | Zsolt Udvari <uzsolt@FreeBSD.org> | 2025-02-13 20:08:19 +0100 |
commit | 439b483bb560d22725085b0f51f236458a2b25bc (patch) | |
tree | 74075a049cc4e51b5f6f2da690f6895f0c5d58eb | |
parent | games/veloren-weekly: update to s20250213 (diff) |
devel/R-cran-sessioninfo: Fix tests
The reason of test failing is the value of LC_ALL. If it's C some tests
fail. If the value is C.UTF-8 all tests passed.
-rw-r--r-- | devel/R-cran-sessioninfo/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/R-cran-sessioninfo/Makefile b/devel/R-cran-sessioninfo/Makefile index 9e9c37631824..6ee1bb5660b2 100644 --- a/devel/R-cran-sessioninfo/Makefile +++ b/devel/R-cran-sessioninfo/Makefile @@ -17,8 +17,9 @@ TEST_DEPENDS= R-cran-callr>0:devel/R-cran-callr \ R-cran-rmarkdown>0:textproc/R-cran-rmarkdown \ R-cran-testthat>0:devel/R-cran-testthat \ R-cran-withr>0:devel/R-cran-withr -TESTING_UNSAFE= https://github.com/r-lib/sessioninfo/issues/111 USES= cran:auto-plist +MAKE_ENV+= LC_ALL="C.UTF-8" + .include <bsd.port.mk> |