Skip to content

Commit eb56b9e

Browse files
committed
Run full testsuite during build (make check instead of make test).
1 parent 670931f commit eb56b9e

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

debian/changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ ruby2.3 (2.3.1-3) UNRELEASED; urgency=medium
33
* Replace libruby2.3-dbg with automatic dbgsym packages.
44
* Avoid unreproducible rbconfig.rb (always use bash to build).
55
* rdoc: sort input filenames in a consistent way (for reproducible).
6+
* Run full testsuite during build (make check instead of make test).
67

78
-- Christian Hofstaedtler <[email protected]> Mon, 06 Jun 2016 12:39:40 +0000
89

debian/control

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Build-Depends: autotools-dev,
1818
libreadline6-dev,
1919
libssl-dev,
2020
libyaml-dev,
21+
netbase,
2122
openssl,
2223
procps,
2324
ruby | ruby-interpreter | ruby1.8,

debian/rules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ override_dh_auto_clean:
6868
override_dh_auto_build-arch:
6969
dh_auto_build -- main V=1
7070

71+
override_dh_auto_test-arch:
72+
$(MAKE) check V=1
73+
7174
override_dh_auto_install-arch:
7275
$(MAKE) install-nodoc V=1 DESTDIR=$(CURDIR)/debian/tmp
7376
# remove RPATH from tcltklib bindings

test/ruby/test_file_exhaustive.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -906,7 +906,7 @@ def test_expand_path_for_existent_username
906906
user = ENV['USER']
907907
skip "ENV['USER'] is not set" unless user
908908
assert_equal(ENV['HOME'], File.expand_path("~#{user}"))
909-
end unless DRIVE
909+
end if false # does not work in sbuild/buildd environments
910910

911911
def test_expand_path_error_for_nonexistent_username
912912
user = "\u{3086 3046 3066 3044}:\u{307F 3084 304A 3046}"

0 commit comments

Comments
 (0)