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

Side by Side Diff: dart/compiler/scripts/sample_metrics.sh

Issue 20722006: Removed compiler/ directory from repository (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/bash
2 #
3 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 # for details. All rights reserved. Use of this source code is governed by a
5 # BSD-style license that can be found in the LICENSE file.
6
7 # Given a file that contains one or more of DartC metrics, check the
8 # for a specific metric, compute its average and deviation, and print
9 # it to the stdout.
10
11 source metrics_math.sh
12
13 if [ ! $# -eq 3 ]; then
14 echo $(basename $0) "\"OutputHeader\" \"CompilerStatToMatch\" metrics.txt";
15 exit 1;
16 fi
17
18 sample_file "$1" "$2" "$3"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698