diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:42:19 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:01:11 +0000 |
commit | edd93439e56810bcfec33f05c18e31b6524dc44c (patch) | |
tree | 5ca8d7ef80c6ae7a73df3823d11a9b0915975b3c | |
parent | 856fb48e318048e0e49d4f05bb5ae1cf3ead6a99 (diff) | |
download | gnu-guix-edd93439e56810bcfec33f05c18e31b6524dc44c.tar gnu-guix-edd93439e56810bcfec33f05c18e31b6524dc44c.tar.gz |
gnu: Enable tests for ruby-childprocess.
-rw-r--r-- | gnu/packages/ruby.scm | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index cd0a815ce5..6e025a5da2 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6651,7 +6651,40 @@ in standard Ruby syntax.") "1p3f43scdzx9zxmy2kw5zsc3az6v46nq4brwcxmnscjy4w4racbv")))) (build-system ruby-build-system) (arguments - `(#:tests? #f)) + `(#:tests? #f + #:test-target "spec" + #:phases + (modify-phases %standard-phases + (add-before 'check 'remove-dependency-and-patch-path + (lambda* (#:key inputs #:allow-other-keys) + (substitute* "spec/spec_helper.rb" + ;; cannot require coveralls otherwise there is a dependency cycle + ;; childprocess, coveralls, rest-client, webmock, addressable, + ;; rspec-its, aruba, childprocess. + ((".*coveralls.*") "") + ((".*Coveralls.*") "") + ;; patch path to /bin/sh + (("/bin/sh") (which "sh")) + ;; testing + (("; sleep") "; puts \"before_sleep\"; sleep; puts \"after_sleep\"") + ) + (substitute* "lib/childprocess/unix/process.rb" + (("send_signal 'TERM'") "puts 'terming'; send_signal 'TERM'") + (("send_signal 'KILL'") "puts 'killing'; send_signal 'KILL'") + (("return true if @exit_code") + "puts \"exit_code: #{@exit_code}\"; p self; return true if @exit_code")) + ;; sleep POLL_INTERVAL + (substitute* "lib/childprocess/abstract_process.rb" + (("sleep POLL_INTERVAL") + "puts 'sleeping'; sleep POLL_INTERVAL; puts 'awake'") + (("unless ok") "puts \"ok was #{ok} and exited? was #{exited?}\"; unless ok")) + #t)) + ;(replace 'check + ; ;; for testing for ben only + ; (lambda _ + ; (zero? (system* "rspec" "spec/childprocess_spec.rb" "-e" "kills + ; the full process tree")))) + ))) (native-inputs `(("bundler" ,bundler) ("ruby-rspec" ,ruby-rspec))) |