File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -66,11 +66,11 @@ while true; do
66
66
wget2 --quiet --inet4-only --no-host-directories --http2-request-window 10 --recursive localhost:${WEB_PORT:? } / 2>&1
67
67
68
68
# Also fetch the sorted reports.
69
- wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort/build -O sort/build 2>&1
70
- wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort/cov -O sort/cov 2>&1
71
- wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort/cov_diff -O sort/cov_diff 2>&1
72
- wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort/crash -O sort/crash 2>&1
73
- wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort/status -O sort/status 2>&1
69
+ wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort_build -O sort/build 2>&1
70
+ wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort_cov -O sort/cov 2>&1
71
+ wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort_cov_diff -O sort/cov_diff 2>&1
72
+ wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort_crash -O sort/crash 2>&1
73
+ wget2 --quiet --inet4-only localhost:${WEB_PORT:? } /sort_status -O sort/status 2>&1
74
74
75
75
# Stop the server.
76
76
kill -9 " $pid_web "
Original file line number Diff line number Diff line change @@ -352,39 +352,39 @@ def index_json():
352
352
model = model )
353
353
354
354
355
- @app .route ('/sort/build ' )
355
+ @app .route ('/sort_build ' )
356
356
def index_sort_build ():
357
357
return render_template ('index.html' ,
358
358
benchmarks = sort_benchmarks (list_benchmarks (),
359
359
sort_by = 'build' ),
360
360
model = model )
361
361
362
362
363
- @app .route ('/sort/cov ' )
363
+ @app .route ('/sort_cov ' )
364
364
def index_sort_cov ():
365
365
return render_template ('index.html' ,
366
366
benchmarks = sort_benchmarks (list_benchmarks (),
367
367
sort_by = 'cov' ),
368
368
model = model )
369
369
370
370
371
- @app .route ('/sort/cov_diff ' )
371
+ @app .route ('/sort_cov_diff ' )
372
372
def index_sort ():
373
373
return render_template ('index.html' ,
374
374
benchmarks = sort_benchmarks (list_benchmarks (),
375
375
sort_by = 'cov_diff' ),
376
376
model = model )
377
377
378
378
379
- @app .route ('/sort/crash ' )
379
+ @app .route ('/sort_crash ' )
380
380
def index_sort_crash ():
381
381
return render_template ('index.html' ,
382
382
benchmarks = sort_benchmarks (list_benchmarks (),
383
383
sort_by = 'crash' ),
384
384
model = model )
385
385
386
386
387
- @app .route ('/sort/status ' )
387
+ @app .route ('/sort_status ' )
388
388
def index_sort_stauts ():
389
389
return render_template ('index.html' ,
390
390
benchmarks = sort_benchmarks (list_benchmarks (),
You can’t perform that action at this time.
0 commit comments