| Index: compiler/scripts/compiler_series_test.sh | 
| diff --git a/compiler/scripts/analyzer_series_test.sh b/compiler/scripts/compiler_series_test.sh | 
| old mode 100644 | 
| new mode 100755 | 
| similarity index 92% | 
| rename from compiler/scripts/analyzer_series_test.sh | 
| rename to compiler/scripts/compiler_series_test.sh | 
| index b6a345cde567fcfc286438e673b3e7256b3b67ac..ede9e2c0c71efcdb9599b2b13625ab515e903d9c | 
| --- a/compiler/scripts/analyzer_series_test.sh | 
| +++ b/compiler/scripts/compiler_series_test.sh | 
| @@ -158,8 +158,8 @@ function failStats() { | 
|  | 
| function compileRevision() { | 
| REVISION=$1 | 
| -  PREBUILT_DIR=$ROOT_OF_REPO/analyzer/revs/$REVISION/prebuilt | 
| -  PREBUILT_BIN=$PREBUILT_DIR/analyzer/bin/dart_analyzer | 
| +  PREBUILT_DIR=$ROOT_OF_REPO/compiler/revs/$REVISION/prebuilt | 
| +  PREBUILT_BIN=$PREBUILT_DIR/compiler/bin/dartc | 
| if [ ! -x $PREBUILT_BIN ]; then | 
| echo "No prebuilt, building and caching" | 
| echo "Checking out clean version of $REVISION; will take some time. Look at $LOG_FILE for progress" | 
| @@ -170,7 +170,7 @@ function compileRevision() { | 
| echo "Run hooks" | 
| gclient runhooks >> $LOG_FILE 2>&1 | 
|  | 
| -    echo "Compiling clean version of dart_analyzer; may take some time" | 
| +    echo "Compiling clean version of dartc; may take some time" | 
| date | 
| cd compiler | 
| ../tools/build.py --mode release >> $LOG_FILE 2>&1 | 
| @@ -198,10 +198,10 @@ function compileRevision() { | 
| fi | 
|  | 
| # Do the second test | 
| -  echo "Running test with dart_analyzer $REVISION!" | 
| +  echo "Running test with dartc $REVISION!" | 
| date | 
| -  echo $SCRIPT_PATH/compiler_metrics.sh --stats-prefix=$REVISION --analyzer=$PREBUILT_DIR/analyzer/bin/dart_analyzer $COMPARE_OPTIONS >> $LOG_FILE 2>&1 | 
| -  $SCRIPT_PATH/dart_analyzer.sh --stats-prefix=$REVISION --analyzer=$PREBUILT_DIR/analyzer/bin/dart_analyzer $COMPARE_OPTIONS > $STAT1 | 
| +  echo $SCRIPT_PATH/compiler_metrics.sh --stats-prefix=$REVISION --dartc=$PREBUILT_DIR/compiler/bin/dartc $COMPARE_OPTIONS >> $LOG_FILE 2>&1 | 
| +  $SCRIPT_PATH/compiler_metrics.sh --stats-prefix=$REVISION --dartc=$PREBUILT_DIR/compiler/bin/dartc $COMPARE_OPTIONS > $STAT1 | 
| if [ ! $? -eq 0 ]; then | 
| echo "error sampling" | 
| failStats $REVISION | 
|  |