File: rules

package info (click to toggle)
rust-rusty-pool 0.7.0-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: makefile: 8; sh: 1
file content (14 lines) | stat: -rwxr-xr-x 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f

ifneq (,$(filter 32,$(DEB_TARGET_ARCH_BITS)))
TEST_BROKEN = tests::test_try_increment_worker_total tests::worker_count_test
endif

%:
	dh $@

# TODO: always check all tests when bug#1022895 is resolved
# <https://github.com/robinfriedli/rusty_pool/issues/9>
override_dh_auto_test:
	dh_auto_test --buildsystem rust -- --no-fail-fast -- \
		$(addprefix --skip ,$(TEST_BROKEN))