@@ -62,6 +62,7 @@ class RunContext:
62
62
tests : typing .List [chiptest .TestDefinition ]
63
63
in_unshare : bool
64
64
chip_tool : str
65
+ dry_run : bool
65
66
66
67
67
68
@click .group (chain = True )
@@ -70,6 +71,11 @@ class RunContext:
70
71
default = 'info' ,
71
72
type = click .Choice (__LOG_LEVELS__ .keys (), case_sensitive = False ),
72
73
help = 'Determines the verbosity of script output.' )
74
+ @click .option (
75
+ '--dry-run' ,
76
+ default = False ,
77
+ is_flag = True ,
78
+ help = 'Only print out shell commands that would be executed' )
73
79
@click .option (
74
80
'--target' ,
75
81
default = ['all' ],
@@ -106,7 +112,7 @@ class RunContext:
106
112
'--chip-tool' ,
107
113
help = 'Binary path of chip tool app to use to run the test' )
108
114
@click .pass_context
109
- def main (context , log_level , target , target_glob , target_skip_glob ,
115
+ def main (context , dry_run , log_level , target , target_glob , target_skip_glob ,
110
116
no_log_timestamps , root , internal_inside_unshare , chip_tool ):
111
117
# Ensures somewhat pretty logging of what is going on
112
118
log_fmt = '%(asctime)s.%(msecs)03d %(levelname)-7s %(message)s'
@@ -151,7 +157,7 @@ def main(context, log_level, target, target_glob, target_skip_glob,
151
157
152
158
context .obj = RunContext (root = root , tests = tests ,
153
159
in_unshare = internal_inside_unshare ,
154
- chip_tool = chip_tool )
160
+ chip_tool = chip_tool , dry_run = dry_run )
155
161
156
162
157
163
@main .command (
@@ -245,7 +251,10 @@ def cmd_run(context, iterations, all_clusters_app, lock_app, ota_provider_app, o
245
251
for test in context .obj .tests :
246
252
test_start = time .monotonic ()
247
253
try :
248
- test .Run (runner , apps_register , paths , pics_file , test_timeout_seconds )
254
+ if context .obj .dry_run :
255
+ logging .info ("Would run test %s:" % test .name )
256
+
257
+ test .Run (runner , apps_register , paths , pics_file , test_timeout_seconds , context .obj .dry_run )
249
258
test_end = time .monotonic ()
250
259
logging .info ('%-20s - Completed in %0.2f seconds' %
251
260
(test .name , (test_end - test_start )))
0 commit comments