File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 38
38
39
39
FUZZING_STATUS_FILENAME = 'status.json'
40
40
COVERAGE_STATUS_FILENAME = 'status-coverage.json'
41
+ INTROSPECTOR_STATUS_FILENAME = 'status-introspector.json'
41
42
42
43
# pylint: disable=invalid-name
43
44
_client = None
@@ -279,7 +280,9 @@ def main():
279
280
with ndb .Client ().context ():
280
281
configs = ((build_project .FUZZING_BUILD_TYPE , FUZZING_STATUS_FILENAME ),
281
282
(build_and_run_coverage .COVERAGE_BUILD_TYPE ,
282
- COVERAGE_STATUS_FILENAME ))
283
+ COVERAGE_STATUS_FILENAME ),
284
+ (build_and_run_coverage .INTROSPECTOR_BUILD_TYPE ,
285
+ INTROSPECTOR_STATUS_FILENAME ))
283
286
284
287
for tag , filename in configs :
285
288
update_build_status (tag , filename )
Original file line number Diff line number Diff line change 131
131
< paper-tabs selected ="fuzzing " id ="build_type " attr-for-selected ="type " on-click ="onChanged ">
132
132
< paper-tab type ="fuzzing "> Fuzzing Builds</ paper-tab >
133
133
< paper-tab type ="coverage "> Coverage Builds</ paper-tab >
134
+ < paper-tab type ="introspector "> Introspector Builds</ paper-tab >
134
135
</ paper-tabs >
135
136
</ div >
136
137
< div class ="card-content ">
212
213
</ div>
213
214
< iron-ajax id ="status_fuzzing " auto handle-as ="json " url ="/status.json " on-response ="onResponseForFuzzing "> </ iron-ajax >
214
215
< iron-ajax id ="status_coverage " auto handle-as ="json " url ="/status-coverage.json " on-response ="onResponseForCoverage "> </ iron-ajax >
216
+ < iron-ajax id ="status_introspector " auto handle-as ="json " url ="/status-introspector.json " on-response ="onResponseForIntrospector "> </ iron-ajax >
215
217
< iron-ajax id ="logxhr " handle-as ="text " on-response ="onLogResponse "> </ iron-ajax >
216
218
</ template>
217
219
281
283
this . status_coverage = e . detail . response ;
282
284
}
283
285
286
+ onResponseForIntrospector ( e ) {
287
+ this . status_introspector = e . detail . response ;
288
+ }
289
+
284
290
onLogResponse ( e ) {
285
291
this . log = e . detail . response ;
286
292
this . loading_log = false ;
295
301
onChanged ( e ) {
296
302
if ( this . $ . build_type . selected == "coverage" ) {
297
303
this . status = this . status_coverage ;
304
+ } else if ( this . $ . build_type . selected == "introspector" ) {
305
+ this . status = this . status_introspector ;
298
306
} else {
299
307
this . status = this . status_fuzzing ;
300
308
}
You can’t perform that action at this time.
0 commit comments