Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: run_a_bunch.sh

Issue 1393233002: Mac Energy Test Harness/Framework Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Snapshot of scripts for http://crbug.com/391646 Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « makeplots.sh ('k') | ui/views/cocoa/bridged_content_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash -x
2
3 # Try to alternate views/cocoa as much as posible.
4
5 TESTS="SingleThrobber Idle FlashingCursor"
6 TESTS="SingleThrobber"
7 PREFIX="../traces/"
8 #SUFFIXES="views cocoa"
9 SUFFIXES="views slowtab"
10 ITERATIONS=33
11
12 for iteration in `seq $ITERATIONS` ; do
13 for test in $TESTS ; do
14 for suffix in $SUFFIXES ; do
15 ./out/Release/ui_perf_tests.${suffix} --single_process --trace-to-file-nam e="${PREFIX}${suffix}.txt" --gtest_filter="EnergyTest.${test}"
16 for sample in ${PREFIX}*-{idle,cursor,throbber}.txt ; do
17 mv "${sample}" "${sample/%.txt/-${iteration}.txt}"
18 done
19 done
20 done
21 done
OLDNEW
« no previous file with comments | « makeplots.sh ('k') | ui/views/cocoa/bridged_content_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698