diff --git a/site/frontend/src/pages/compare/compile/table/shortcuts/binary-size-shortcut.vue b/site/frontend/src/pages/compare/compile/table/shortcuts/binary-size-shortcut.vue index 2868b8f8a..a5cec231a 100644 --- a/site/frontend/src/pages/compare/compile/table/shortcuts/binary-size-shortcut.vue +++ b/site/frontend/src/pages/compare/compile/table/shortcuts/binary-size-shortcut.vue @@ -39,7 +39,7 @@ function normalizeBackend(backend: string): string {
./target/release/collector binary_stats compile \
     +{{ props.baseArtifact.commit }} \
     --rustc2 +{{ props.artifact.commit }} \
-    --include {{ testCase.benchmark }} \
+    --exact-match {{ testCase.benchmark }} \
     --profile {{ normalizeProfile(testCase.profile) }} \
     --backend {{ normalizeBackend(testCase.backend) }}
diff --git a/site/frontend/src/pages/compare/compile/table/shortcuts/cachegrind-cmd.vue b/site/frontend/src/pages/compare/compile/table/shortcuts/cachegrind-cmd.vue index 923b8acb9..299a98223 100644 --- a/site/frontend/src/pages/compare/compile/table/shortcuts/cachegrind-cmd.vue +++ b/site/frontend/src/pages/compare/compile/table/shortcuts/cachegrind-cmd.vue @@ -39,7 +39,7 @@ function normalizeScenario(scenario: string): string {
./target/release/collector profile_local cachegrind \
     +{{ firstCommit }} \
-    --include {{ testCase.benchmark }} \
+    --exact-match {{ testCase.benchmark }} \
     --profiles {{ normalizeProfile(testCase.profile) }} \
     --scenarios {{ normalizeScenario(testCase.scenario) }}
diff --git a/site/frontend/src/pages/detailed-query.ts b/site/frontend/src/pages/detailed-query.ts index be91d23b3..f32b35199 100644 --- a/site/frontend/src/pages/detailed-query.ts +++ b/site/frontend/src/pages/detailed-query.ts @@ -198,7 +198,7 @@ function populate_data(data, state: Selector) { txt += "
Local profile (base): " + `./target/release/collector profile_local cachegrind - +${state.base_commit} --include ${bench_name( + +${state.base_commit} --exact-match ${bench_name( state.benchmark )} --profiles ${profile(state.benchmark)} --scenarios ${scenario_filter( @@ -208,7 +208,7 @@ function populate_data(data, state: Selector) { txt += "
Local profile (new): " + `./target/release/collector profile_local cachegrind - +${state.commit} --include ${bench_name( + +${state.commit} --exact-match ${bench_name( state.benchmark )} --profiles ${profile(state.benchmark)} --scenarios ${scenario_filter( @@ -220,7 +220,7 @@ function populate_data(data, state: Selector) { `./target/release/collector profile_local cachegrind +${state.base_commit} --rustc2 +${ state.commit - } --include ${bench_name(state.benchmark)} --profiles + } --exact-match ${bench_name(state.benchmark)} --profiles ${profile(state.benchmark)} --scenarios ${scenario_filter( state.scenario )}`;