@@ -386,7 +386,7 @@ mod tests {
386386 #[ test]
387387 fn build_command ( ) {
388388 insta:: assert_compact_debug_snapshot!( get_build_commands( "@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af9952" ) ,
389- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af9952", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } })]"# ) ;
389+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af9952", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } })]"# ) ;
390390 }
391391
392392 #[ test]
@@ -395,7 +395,7 @@ mod tests {
395395@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af9952
396396@rust-timer build 23936af287657fa4148aeab40cc2a780810fae52
397397"# ) ,
398- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af9952", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }), Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae52", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } })]"# ) ;
398+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af9952", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }), Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae52", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles : None } })]"# ) ;
399399 }
400400
401401 #[ test]
@@ -407,14 +407,14 @@ mod tests {
407407 #[ test]
408408 fn build_command_complex ( ) {
409409 insta:: assert_compact_debug_snapshot!( get_build_commands( " @rust-timer build sha123456 exclude=baz include=foo,bar runs=4" ) ,
410- @r#"[Ok(BuildCommand { sha: "sha123456", params: BenchmarkParameters { include: Some("foo,bar"), exclude: Some("baz"), runs: Some(4), backends: None } })]"# ) ;
410+ @r#"[Ok(BuildCommand { sha: "sha123456", params: BenchmarkParameters { include: Some("foo,bar"), exclude: Some("baz"), runs: Some(4), backends: None, profiles: None } })]"# ) ;
411411 }
412412
413413 #[ test]
414414 fn build_command_link ( ) {
415415 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"
416416@rust-timer build https://github.com/rust-lang/rust/commit/323f521bc6d8f2b966ba7838a3f3ee364e760b7e"# ) ,
417- @r#"[Ok(BuildCommand { sha: "323f521bc6d8f2b966ba7838a3f3ee364e760b7e", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } })]"# ) ;
417+ @r#"[Ok(BuildCommand { sha: "323f521bc6d8f2b966ba7838a3f3ee364e760b7e", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } })]"# ) ;
418418 }
419419
420420 #[ test]
@@ -430,7 +430,7 @@ mod tests {
430430 #[ test]
431431 fn queue_command ( ) {
432432 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue" ) ,
433- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
433+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
434434 }
435435
436436 #[ test]
@@ -448,19 +448,19 @@ mod tests {
448448 #[ test]
449449 fn queue_command_include ( ) {
450450 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=abcd,feih" ) ,
451- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("abcd,feih"), exclude: None, runs: None, backends: None } }))"# ) ;
451+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("abcd,feih"), exclude: None, runs: None, backends: None, profiles: None } }))"# ) ;
452452 }
453453
454454 #[ test]
455455 fn queue_command_exclude ( ) {
456456 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue exclude=foo134,barzbaz41baf" ) ,
457- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: Some("foo134,barzbaz41baf"), runs: None, backends: None } }))"# ) ;
457+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: Some("foo134,barzbaz41baf"), runs: None, backends: None, profiles: None } }))"# ) ;
458458 }
459459
460460 #[ test]
461461 fn queue_command_runs ( ) {
462462 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue runs=5" ) ,
463- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: Some(5), backends: None } }))" ) ;
463+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: Some(5), backends: None, profiles: None } }))" ) ;
464464 }
465465
466466 #[ test]
@@ -472,7 +472,7 @@ mod tests {
472472 #[ test]
473473 fn queue_command_combination ( ) {
474474 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=acda,13asd exclude=c13,DA runs=5" ) ,
475- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("acda,13asd"), exclude: Some("c13,DA"), runs: Some(5), backends: None } }))"# ) ;
475+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("acda,13asd"), exclude: Some("c13,DA"), runs: Some(5), backends: None, profiles: None } }))"# ) ;
476476 }
477477
478478 #[ test]
@@ -484,19 +484,19 @@ mod tests {
484484 #[ test]
485485 fn queue_command_spaces ( ) {
486486 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=abcd,das " ) ,
487- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("abcd,das"), exclude: None, runs: None, backends: None } }))"# ) ;
487+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("abcd,das"), exclude: None, runs: None, backends: None, profiles: None } }))"# ) ;
488488 }
489489
490490 #[ test]
491491 fn queue_command_with_bors ( ) {
492492 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@bors try @rust-timer queue include=foo,bar" ) ,
493- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("foo,bar"), exclude: None, runs: None, backends: None } }))"# ) ;
493+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("foo,bar"), exclude: None, runs: None, backends: None, profiles: None } }))"# ) ;
494494 }
495495
496496 #[ test]
497497 fn queue_command_parameter_order ( ) {
498498 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue runs=3 exclude=c,a include=b" ) ,
499- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("b"), exclude: Some("c,a"), runs: Some(3), backends: None } }))"# ) ;
499+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("b"), exclude: Some("c,a"), runs: Some(3), backends: None, profiles: None } }))"# ) ;
500500 }
501501
502502 #[ test]
@@ -507,7 +507,7 @@ Let's do a perf run quickly and then we can merge it.
507507@bors try @rust-timer queue include=foo,bar
508508
509509Otherwise LGTM."# ) ,
510- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("foo,bar"), exclude: None, runs: None, backends: None } }))"# ) ;
510+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("foo,bar"), exclude: None, runs: None, backends: None, profiles: None } }))"# ) ;
511511 }
512512
513513 fn get_build_commands ( body : & str ) -> Vec < Result < BuildCommand < ' _ > , String > > {
@@ -517,44 +517,58 @@ Otherwise LGTM."#),
517517 #[ test]
518518 fn build_command_with_backends ( ) {
519519 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af995G"# ) ,
520- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995G", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } })]"# ) ;
520+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995G", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } })]"# ) ;
521521 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af995A backends=Llvm"# ) ,
522- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995A", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Llvm") } })]"# ) ;
522+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995A", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Llvm"), profiles: None } })]"# ) ;
523523 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 23936af287657fa4148aeab40cc2a780810fae5B backends=Cranelift"# ) ,
524- @r#"[Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae5B", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift") } })]"# ) ;
524+ @r#"[Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae5B", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift"), profiles: None } })]"# ) ;
525525 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 23936af287657fa4148aeab40cc2a780810fae5C backends=Cranelift,Llvm"# ) ,
526- @r#"[Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae5C", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift,Llvm") } })]"# ) ;
526+ @r#"[Ok(BuildCommand { sha: "23936af287657fa4148aeab40cc2a780810fae5C", params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift,Llvm"), profiles: None } })]"# ) ;
527527 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af995D include=hello backends=Llvm"# ) ,
528- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995D", params: BenchmarkParameters { include: Some("hello"), exclude: None, runs: None, backends: Some("Llvm") } })]"# ) ;
528+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995D", params: BenchmarkParameters { include: Some("hello"), exclude: None, runs: None, backends: Some("Llvm"), profiles: None } })]"# ) ;
529529 insta:: assert_compact_debug_snapshot!( get_build_commands( r#"@rust-timer build 5832462aa1d9373b24ace96ad2c50b7a18af995E runs=10 backends=Llvm"# ) ,
530- @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995E", params: BenchmarkParameters { include: None, exclude: None, runs: Some(10), backends: Some("Llvm") } })]"# ) ;
530+ @r#"[Ok(BuildCommand { sha: "5832462aa1d9373b24ace96ad2c50b7a18af995E", params: BenchmarkParameters { include: None, exclude: None, runs: Some(10), backends: Some("Llvm"), profiles: None } })]"# ) ;
531531 }
532532
533533 #[ test]
534534 fn queue_command_with_backends ( ) {
535535 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue backends=Llvm" ) ,
536- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Llvm") } }))"# ) ;
536+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Llvm"), profiles: None } }))"# ) ;
537537 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue backends=Cranelift" ) ,
538- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift") } }))"# ) ;
538+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift"), profiles: None } }))"# ) ;
539539 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue backends=Cranelift,Llvm" ) ,
540- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift,Llvm") } }))"# ) ;
540+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift,Llvm"), profiles: None } }))"# ) ;
541541 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue" ) ,
542- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
542+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
543543 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=hello backends=Llvm" ) ,
544- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("hello"), exclude: None, runs: None, backends: Some("Llvm") } }))"# ) ;
544+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("hello"), exclude: None, runs: None, backends: Some("Llvm"), profiles: None } }))"# ) ;
545545 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=hello exclude=ripgrep runs=3 backends=Llvm" ) ,
546- @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("hello"), exclude: Some("ripgrep"), runs: Some(3), backends: Some("Llvm") } }))"# ) ;
546+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: Some("hello"), exclude: Some("ripgrep"), runs: Some(3), backends: Some("Llvm"), profiles: None } }))"# ) ;
547+ }
548+
549+ #[ test]
550+ fn queue_command_with_profiles ( ) {
551+ insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue profiles=Doc" ) ,
552+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: Some("Doc") } }))"# ) ;
553+ insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue profiles=Check,Clippy" ) ,
554+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: Some("Check,Clippy") } }))"# ) ;
555+ insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue profiles=Doc,Clippy,Opt backends=Cranelift,Llvm" ) ,
556+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: Some("Cranelift,Llvm"), profiles: Some("Doc,Clippy,Opt") } }))"# ) ;
557+ insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue profiles=Foo" ) ,
558+ @r#"Some(Err("Cannot parse profiles: Invalid profile: Foo. Valid values are: check, debug, opt, doc, doc-json, clippy"))"# ) ;
559+ insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue profiles=check" ) ,
560+ @r#"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: Some("check") } }))"# ) ;
547561 }
548562
549563 #[ test]
550564 fn no_empty_arguments_thank_you ( ) {
551565 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue include=" ) ,
552- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
566+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
553567 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue exclude=" ) ,
554- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
568+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
555569 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue runs=" ) ,
556- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
570+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
557571 insta:: assert_compact_debug_snapshot!( parse_queue_command( "@rust-timer queue backends=" ) ,
558- @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None } }))" ) ;
572+ @"Some(Ok(QueueCommand { params: BenchmarkParameters { include: None, exclude: None, runs: None, backends: None, profiles: None } }))" ) ;
559573 }
560574}
0 commit comments