Remove agb-tests in favor of putting the tests directly in agb.

This commit is contained in:
Alissa Rao 2022-09-15 23:28:38 -07:00
parent 223ef150ab
commit b920d94f83
No known key found for this signature in database
GPG key ID: 9314D8F6745E881E
10 changed files with 0 additions and 39 deletions

View file

@ -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"

View file

@ -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 = []

View file

@ -1,3 +0,0 @@
[toolchain]
channel = "nightly"
components = ["rust-src", "clippy"]

View file

@ -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)