mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-10 00:51:34 +11:00
Remove agb-tests in favor of putting the tests directly in agb.
This commit is contained in:
parent
223ef150ab
commit
b920d94f83
|
@ -1,14 +0,0 @@
|
|||
[unstable]
|
||||
build-std = ["core", "alloc"]
|
||||
build-std-features = ["compiler-builtins-mem"]
|
||||
|
||||
[build]
|
||||
target = "thumbv4t-none-eabi"
|
||||
|
||||
[target.thumbv4t-none-eabi]
|
||||
rustflags = ["-Clink-arg=-T../agb/gba.ld", "-Ctarget-cpu=arm7tdmi"]
|
||||
runner = "mgba-test-runner"
|
||||
|
||||
[target.armv4t-none-eabi]
|
||||
rustflags = ["-Clink-arg=-T../agb/gba.ld", "-Ctarget-cpu=arm7tdmi"]
|
||||
runner = "mgba-test-runner"
|
|
@ -1,19 +0,0 @@
|
|||
[package]
|
||||
name = "agb-tests"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 3
|
||||
debug = true
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
debug = true
|
||||
|
||||
[dependencies]
|
||||
agb = { version = "*", path = "../agb", features = ["testing"] }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
default-target = "thumbv6m-none-eabi"
|
||||
targets = []
|
|
@ -1,3 +0,0 @@
|
|||
[toolchain]
|
||||
channel = "nightly"
|
||||
components = ["rust-src", "clippy"]
|
3
justfile
3
justfile
|
@ -13,7 +13,6 @@ clippy:
|
|||
|
||||
test:
|
||||
just _test-debug agb
|
||||
just _test-debug agb-tests
|
||||
just _test-debug agb-fixnum
|
||||
just _test-debug-arm agb
|
||||
just _test-debug tools
|
||||
|
@ -21,8 +20,6 @@ test:
|
|||
test-release:
|
||||
just _test-release agb
|
||||
just _test-release-arm agb
|
||||
just _test-release agb-tests
|
||||
just _test-release-arm agb-tests
|
||||
|
||||
doctest-agb:
|
||||
(cd agb && cargo test --doc -Z doctest-xcompile)
|
||||
|
|
Loading…
Reference in a new issue