summaryrefslogtreecommitdiff
path: root/tools/runner/lib/TestActivity.java
diff options
context:
space:
mode:
Diffstat (limited to 'tools/runner/lib/TestActivity.java')
-rw-r--r--tools/runner/lib/TestActivity.java61
1 files changed, 0 insertions, 61 deletions
diff --git a/tools/runner/lib/TestActivity.java b/tools/runner/lib/TestActivity.java
deleted file mode 100644
index 6e6d09f198..0000000000
--- a/tools/runner/lib/TestActivity.java
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright (C) 2010 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package vogar.target;
-
-import android.app.Activity;
-import android.os.Bundle;
-import android.util.Log;
-import android.widget.TextView;
-import vogar.Threads;
-
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-
-/**
- * Runs a user-supplied {@code main(String[] args)} method
- * in the context of an Android activity. The result of the method
- * (success or exception) is reported to a file where Dalvik
- * Runner can pick it up.
- */
-public class TestActivity extends Activity {
-
- private final static String TAG = "TestActivity";
-
- private TextView view;
-
- @Override public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
-
- this.view = new TextView(this);
- log("TestActivity starting...");
- setContentView(view);
-
- ExecutorService executor = Executors.newFixedThreadPool(
- 1, Threads.daemonThreadFactory());
- executor.submit(new Runnable() {
- public void run() {
- new TestRunner().run();
- }
- });
- executor.shutdown();
- }
-
- private void log(String message) {
- Log.i(TAG, message);
- view.append(message + "\n");
- }
-}