public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] [PATCH v2 1/3] ruby-ng.eclass: allow non-fatal use of test functions
@ 2023-03-18 23:12 Sam James
  2023-03-18 23:12 ` [gentoo-dev] [PATCH v2 2/3] ruby-ng.eclass: use eqawarn for test dependency warning Sam James
  2023-03-18 23:12 ` [gentoo-dev] [PATCH v2 3/3] ruby-fakegem.eclass: allow non-fatal use of test functions Sam James
  0 siblings, 2 replies; 3+ messages in thread
From: Sam James @ 2023-03-18 23:12 UTC (permalink / raw
  To: gentoo-dev; +Cc: ruby, Sam James

die -n will make die become non-fatal if run under 'nonfatal',
this is useful if e.g. need to do cleanup.

For example, in an ebuild, I need to setup a database, run tests,
then always cleanup, which looks like:
```
db_setup
nonfatal each_fakegem_test || tests_failed=1
db_cleanup

if [[ ${tests_failed} == 1 ]] ; then
	die "Tests failed! Please see ..."
fi
```

Just like we do with e.g. virtualx. This also brings us into line
with the Python eclasses.

Signed-off-by: Sam James <sam@gentoo.org>
---
 eclass/ruby-ng.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index 67c22d518a313..aa8a15170cf80 100644
--- a/eclass/ruby-ng.eclass
+++ b/eclass/ruby-ng.eclass
@@ -721,7 +721,7 @@ ruby-ng_rspec() {
 			;;
 	esac
 
-	${RUBY} -S rspec-${version} ${rspec_params} ${files} || die "rspec failed"
+	${RUBY} -S rspec-${version} ${rspec_params} ${files} || die -n "rspec failed"
 }
 
 # @FUNCTION: ruby-ng_cucumber
@@ -754,7 +754,7 @@ ruby-ng_cucumber() {
 			;;
 	esac
 
-	CUCUMBER_PUBLISH_QUIET=true ${RUBY} -S cucumber ${cucumber_params} "$@" || die "cucumber failed"
+	CUCUMBER_PUBLISH_QUIET=true ${RUBY} -S cucumber ${cucumber_params} "$@" || die -n "cucumber failed"
 }
 
 # @FUNCTION: ruby-ng_testrb-2
-- 
2.40.0



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-18 23:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-18 23:12 [gentoo-dev] [PATCH v2 1/3] ruby-ng.eclass: allow non-fatal use of test functions Sam James
2023-03-18 23:12 ` [gentoo-dev] [PATCH v2 2/3] ruby-ng.eclass: use eqawarn for test dependency warning Sam James
2023-03-18 23:12 ` [gentoo-dev] [PATCH v2 3/3] ruby-fakegem.eclass: allow non-fatal use of test functions Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox