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

Unified Diff: compiler/scripts/dartc_test.sh

Issue 9466041: Removes dependency on v8 from dartc testing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated date, copyright notices, build.xml Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « compiler/scripts/dartc_size.sh ('k') | compiler/scripts/dartc_wrapper.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/scripts/dartc_test.sh
diff --git a/compiler/scripts/dartc_test.sh b/compiler/scripts/dartc_test.sh
deleted file mode 100755
index 4722954c215a91001f3bc4000f4ef1cd452ec3cb..0000000000000000000000000000000000000000
--- a/compiler/scripts/dartc_test.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/bash
-# Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-set -e
-
-case $(uname -s) in
- *Linux*|*linux*)
- OS="linux"
- ;;
- Darwin)
- OS="mac"
- ;;
- *)
- OS="generic"
- ;;
-esac
-
-SCRIPT_DIR=$(dirname $0)
-DARTC_HOME=$(dirname $SCRIPT_DIR)
-DARTC_LIBS=$DARTC_HOME/lib
-D8_EXEC=${D8_EXEC:-@D8_EXEC@}
-DART_SCRIPT_NAME=${DART_SCRIPT_NAME:-$(basename $0)}
-
-if [ -x /usr/libexec/java_home ]; then
- export JAVA_HOME=$(/usr/libexec/java_home -v '1.6+')
-fi
-
-# Limit heap in order to detect any memory issues.
-# On some system, the heap dynamically sizes to > 1GB.
-# Users can specify DART_JVMARGS in the environment to override
-# these settings.
-EXTRA_JVMARGS="-Xmx256M -Xss2M"
-
-exec java $EXTRA_JVMARGS $DART_JVMARGS -ea -Dcom.google.dart.runner.d8="$D8_EXEC" \
- -Dcom.google.dart.runner.progname="$DART_SCRIPT_NAME" \
- -classpath "@CLASSPATH@" \
- com.google.dart.runner.DartRunner $@
« no previous file with comments | « compiler/scripts/dartc_size.sh ('k') | compiler/scripts/dartc_wrapper.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698