Add unit tests skeleton for the time profiler

This commit adds a test crate for the time profiler to `tests/unit/profile`. The
only unit test contained in this crate is a smoke test that the time profiler
thread can be created and destroyed. It serves as a place for adding new tests
in the future.
This commit is contained in:
Nick Fitzgerald 2016-04-19 16:27:35 -07:00
parent 64b0dafde8
commit 35a5d6da15
5 changed files with 51 additions and 0 deletions

View file

@ -33,6 +33,7 @@ dependencies = [
"offscreen_gl_context 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"plugin_compiletest 0.0.1",
"profile 0.0.1",
"profile_tests 0.0.1",
"profile_traits 0.0.1",
"script 0.0.1",
"script_tests 0.0.1",
@ -1569,6 +1570,14 @@ dependencies = [
"util 0.0.1",
]
[[package]]
name = "profile_tests"
version = "0.0.1"
dependencies = [
"profile 0.0.1",
"profile_traits 0.0.1",
]
[[package]]
name = "profile_traits"
version = "0.0.1"

View file

@ -33,6 +33,9 @@ path = "../../tests/unit/net"
[dev-dependencies.net_traits_tests]
path = "../../tests/unit/net_traits"
[dev-dependencies.profile_tests]
path = "../../tests/unit/profile"
[dev-dependencies.script_tests]
path = "../../tests/unit/script"