2020-04-06 21:17:09 +00:00
|
|
|
[package]
|
|
|
|
name = "kernel"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Andre Richter <andre.o.richter@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# The features section is used to select the target board.
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
bsp_rpi3 = ["cortex-a", "register"]
|
|
|
|
bsp_rpi4 = ["cortex-a", "register"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
qemu-exit = "0.1.x"
|
|
|
|
test-types = { path = "test-types" }
|
|
|
|
|
|
|
|
# Optional dependencies
|
2020-04-16 20:54:08 +00:00
|
|
|
cortex-a = { version = "3.0.x", optional = true }
|
2020-07-24 21:25:26 +00:00
|
|
|
register = { version = "0.5.x", features = ["no_std_unit_tests"], optional = true }
|
2020-04-06 21:17:09 +00:00
|
|
|
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
## Testing
|
|
|
|
##--------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
test-macros = { path = "test-macros" }
|
|
|
|
|
|
|
|
# Unit tests are done in the library part of the kernel.
|
|
|
|
[lib]
|
|
|
|
name = "libkernel"
|
|
|
|
test = true
|
|
|
|
|
|
|
|
# Disable unit tests for the kernel binary.
|
|
|
|
[[bin]]
|
|
|
|
name = "kernel"
|
|
|
|
test = false
|
|
|
|
|
|
|
|
# List of tests without harness.
|
|
|
|
[[test]]
|
|
|
|
name = "00_console_sanity"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "02_exception_sync_page_fault"
|
|
|
|
harness = false
|