File: Makefile

package info (click to toggle)
rust-yaxpeax-x86 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,684 kB
  • sloc: makefile: 13
file content (14 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test: test-fast test-exhaustive

test-fast: test-std test-no-std test-fmt-no-std

test-exhaustive:
	cargo test -- --ignored
	cargo test --no-default-features -- --ignored

test-std:
	cargo test
test-no-std:
	cargo test --no-default-features
test-fmt-no-std:
	cargo test --no-default-features --features "fmt"