File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ test-success-exit-code = {integer}
83
83
# The timeout for running a test through `bootimage test` or `bootimage runner` (in seconds)
84
84
test-timeout = 300
85
85
86
- # Whether the `-- no-reboot` flag should be passed to test executables
86
+ # Whether the `-no-reboot` flag should be passed to test executables
87
87
test-no-reboot = true
88
88
```
89
89
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub struct Config {
33
33
/// An exit code that should be considered as success for test executables (applies to
34
34
/// `bootimage runner`)
35
35
pub test_success_exit_code : Option < i32 > ,
36
- /// Whether the `-- no-reboot` flag should be passed to test executables
36
+ /// Whether the `-no-reboot` flag should be passed to test executables
37
37
///
38
38
/// Defaults to `true`
39
39
pub test_no_reboot : bool ,
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ pub fn run(
24
24
. collect ( ) ;
25
25
if is_test {
26
26
if config. test_no_reboot {
27
- run_command. push ( "-- no-reboot" . to_owned ( ) ) ;
27
+ run_command. push ( "-no-reboot" . to_owned ( ) ) ;
28
28
}
29
29
if let Some ( args) = config. test_args {
30
30
run_command. extend ( args) ;
You can’t perform that action at this time.
0 commit comments