File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change
1
+ //! This module add real world mbe example for benchmark tests
2
+ //! `test_data/fixture-invocations.rs` and `test_data/fixture-rules.rs` are
3
+ //! single lines, with `__ra_macro_fixtureXXX` name macro.
4
+
1
5
use std:: fs;
2
6
3
7
use profile:: StopWatch ;
Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ fn check_todo(path: &Path, text: &str) {
260
260
"ast/make.rs" ,
261
261
// The documentation in string literals may contain anything for its own purposes
262
262
"completion/src/generated_lint_completions.rs" ,
263
+ // mbe test
264
+ "mbe/test_data/fixture-rules.rs" ,
265
+ "mbe/test_data/fixture-invocations.rs" ,
263
266
] ;
264
267
if need_todo. iter ( ) . any ( |p| path. ends_with ( p) ) {
265
268
return ;
@@ -292,6 +295,9 @@ fn check_dbg(path: &Path, text: &str) {
292
295
"completion/src/generated_lint_completions.rs" ,
293
296
// test for doc test for remove_dbg
294
297
"src/tests/generated.rs" ,
298
+ // mbe test
299
+ "mbe/test_data/fixture-rules.rs" ,
300
+ "mbe/test_data/fixture-invocations.rs" ,
295
301
] ;
296
302
if need_dbg. iter ( ) . any ( |p| path. ends_with ( p) ) {
297
303
return ;
You can’t perform that action at this time.
0 commit comments