Date: Mon, 4 Jan 2021 10:22:37 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r560279 - head/devel/ctre Message-ID: <202101041022.104AMbVk048446@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Mon Jan 4 10:22:37 2021 New Revision: 560279 URL: https://svnweb.freebsd.org/changeset/ports/560279 Log: devel/ctre: Correct the test target Modified: head/devel/ctre/Makefile Modified: head/devel/ctre/Makefile ============================================================================== --- head/devel/ctre/Makefile Mon Jan 4 10:00:15 2021 (r560278) +++ head/devel/ctre/Makefile Mon Jan 4 10:22:37 2021 (r560279) @@ -22,10 +22,8 @@ CMAKE_OFF= BUILD_TESTING NO_BUILD= yes NO_ARCH= yes -do-test: # https://github.com/hanickadot/compile-time-regular-expressions/issues/162 - @cd ${BUILD_WRKSRC} && \ - ${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBUILD_TESTING:BOOL=ON -DCTRE_BUILD_TESTS:BOOL=ON ${CMAKE_SOURCE_PATH} && \ - ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ctre-test && \ - ctest --progress --no-tests=ignore --output-on-failure +do-test: # everything is tested during compilation, if you are able to compile then it's ok + @cd ${WRKSRC} && \ + ${SETENV} ${MAKE_ENV} ${GMAKE} -j ${_MAKE_JOBS} .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101041022.104AMbVk048446>