File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 7
7
// except according to those terms.
8
8
9
9
mod package;
10
+ mod release;
10
11
mod util;
11
12
12
13
use package:: Package ;
@@ -110,11 +111,13 @@ fn test_gpt_disk_io() {
110
111
111
112
fn main ( ) {
112
113
let args: Vec < _ > = env:: args ( ) . collect ( ) ;
114
+ let arg_auto_release = "auto_release" ;
113
115
let arg_test_all = "test_all" ;
114
116
let arg_test_uguid = "test_uguid" ;
115
117
let arg_test_gpt_disk_types = "test_gpt_disk_types" ;
116
118
let arg_test_gpt_disk_io = "test_gpt_disk_io" ;
117
119
let actions = & [
120
+ arg_auto_release,
118
121
arg_test_all,
119
122
arg_test_uguid,
120
123
arg_test_gpt_disk_types,
@@ -126,6 +129,9 @@ fn main() {
126
129
}
127
130
128
131
let action = & args[ 1 ] ;
132
+ if action == arg_auto_release {
133
+ release:: auto_release ( ) ;
134
+ }
129
135
if action == arg_test_all || action == arg_test_uguid {
130
136
test_uguid ( ) ;
131
137
}
Original file line number Diff line number Diff line change
1
+ // Copyright 2023 Google LLC
2
+ //
3
+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5
+ // <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6
+ // option. This file may not be copied, modified, or distributed
7
+ // except according to those terms.
8
+
9
+ pub fn auto_release ( ) {
10
+ todo ! ( )
11
+ }
You can’t perform that action at this time.
0 commit comments