Skip to content

Commit

Permalink
Moved benchmarks to a single place (bevyengine#1477)
Browse files Browse the repository at this point in the history
  • Loading branch information
YohDeadfall committed Feb 19, 2021
1 parent 041fd27 commit 578a5b1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 56 deletions.
11 changes: 11 additions & 0 deletions benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ edition = "2018"
criterion = "0.3"
bevy = { path = "../" }

[[bench]]
name = "bench"
path = "benches/bevy_ecs/bench.rs"
harness = false
required-features = ["macros"]

[[bench]]
name = "system_stage"
path = "benches/bevy_ecs/stages.rs"
harness = false

[[bench]]
name = "iter"
path = "benches/bevy_tasks/iter.rs"
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use bevy_ecs::{prelude::*, Stage};
use bevy::ecs::{IntoSystem,World,SystemStage,Resources,Query,Stage};
use criterion::{criterion_group, criterion_main, Criterion};

criterion_group!(benches, empty_systems, busy_systems, contrived);
Expand Down
9 changes: 0 additions & 9 deletions crates/bevy_ecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,3 @@ lazy_static = { version = "1.4.0" }
[dev-dependencies]
bencher = "0.1.5"
criterion = "0.3"

[[bench]]
name = "bench"
harness = false
required-features = ["macros"]

[[bench]]
name = "system_stage"
harness = false
46 changes: 0 additions & 46 deletions crates/bevy_transform/benches/local_to_world.rs

This file was deleted.

0 comments on commit 578a5b1

Please sign in to comment.