Skip to content

Commit 6c5b3e2

Browse files
committed
Remove regex-1.5.5 from bash script and collector README
1 parent 0b623f3 commit 6c5b3e2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ci/check-profiling.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ test -f results/eprintln-Test-helloworld-Check-Full
137137
test ! -s results/eprintln-Test-helloworld-Check-Full
138138

139139
# llvm-lines. `Debug` not `Check` because it doesn't support `Check` profiles.
140-
# Including both `helloworld` and `regex-1.5.5` benchmarks, as they exercise the
140+
# Including both `helloworld` and `regex-automata-0.4.8` benchmarks, as they exercise the
141141
# zero dependency and the greater than zero dependency cases, respectively, the
142142
# latter of which has broken before.
143143
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \
@@ -146,12 +146,12 @@ RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=
146146
--id Test \
147147
--profiles Debug \
148148
--cargo $bindir/cargo \
149-
--include helloworld,regex-1.5.5 \
149+
--include helloworld,regex-automata-0.4.8 \
150150
--scenarios Full
151151
test -f results/ll-Test-helloworld-Debug-Full
152152
grep -q "Lines.*Copies.*Function name" results/ll-Test-helloworld-Debug-Full
153-
test -f results/ll-Test-regex-1.5.5-Debug-Full
154-
grep -q "Lines.*Copies.*Function name" results/ll-Test-regex-1.5.5-Debug-Full
153+
test -f results/ll-Test-regex-automata-0.4.8-Debug-Full
154+
grep -q "Lines.*Copies.*Function name" results/ll-Test-regex-automata-0.4.8-Debug-Full
155155

156156
# llvm-ir. `Debug` not `Check` because it works better that way.
157157
RUST_BACKTRACE=1 RUST_LOG=raw_cargo_messages=trace,collector=debug,rust_sysroot=debug \

collector/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,14 +235,14 @@ Finally, while most of the options you can pass to the collector are supported,
235235
the profilers used in the `profile_local` command are not. In Windows, the only currently supported
236236
profiler is the `self-profiler`.
237237

238-
As a complete example, let's run just the `regex-1.5.5` benchmark in the `Debug`
238+
As a complete example, let's run just the `regex-automata-0.4.8` benchmark in the `Debug`
239239
profile with self-profiling results available:
240240

241241
```pwsh
242242
$env:XPERF="C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit\xperf.exe"
243243
$env:TRACELOG="C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x64\tracelog.exe"
244-
.\target\release\collector.exe bench_local $env:RUST_ORIGINAL --id Original --profiles Debug --include regex-1.5.5 --self-profile
245-
.\target\release\collector.exe bench_local $env:RUST_MODIFIED --id Modified --profiles Debug --include regex-1.5.5 --self-profile
244+
.\target\release\collector.exe bench_local $env:RUST_ORIGINAL --id Original --profiles Debug --include regex-automata-0.4.8 --self-profile
245+
.\target\release\collector.exe bench_local $env:RUST_MODIFIED --id Modified --profiles Debug --include regex-automata-0.4.8 --self-profile
246246
.\target\release\site.exe .\results.db
247247
```
248248

0 commit comments

Comments
 (0)