Delete D8YouTubeDeployJarVerificationTest

Change-Id: I1725d1ad7f2b4739a25cc4687ef010aeb46dcb19
diff --git a/src/test/java/com/android/tools/r8/internal/D8YouTubeDeployJarVerificationTest.java b/src/test/java/com/android/tools/r8/internal/D8YouTubeDeployJarVerificationTest.java
deleted file mode 100644
index f6de3f9..0000000
--- a/src/test/java/com/android/tools/r8/internal/D8YouTubeDeployJarVerificationTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (c) 2016, the R8 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.
-package com.android.tools.r8.internal;
-
-import com.android.tools.r8.CompilationMode;
-import com.android.tools.r8.R8RunArtTestsTest.CompilerUnderTest;
-import org.junit.Test;
-
-public class D8YouTubeDeployJarVerificationTest extends YouTubeCompilationTestBase {
-
-  public D8YouTubeDeployJarVerificationTest() {
-    super(12, 17);
-  }
-
-  @Test
-  public void buildDebugFromDeployJar() throws Exception {
-    runAndCheckVerification(
-        CompilerUnderTest.D8, CompilationMode.DEBUG, base + APK, null, base + DEPLOY_JAR);
-  }
-
-  @Test
-  public void buildReleaseFromDeployJar() throws Exception {
-    runAndCheckVerification(
-        CompilerUnderTest.D8, CompilationMode.RELEASE, base + APK, null, base + DEPLOY_JAR);
-  }
-}
diff --git a/src/test/java/com/android/tools/r8/internal/YouTubeCompilationTestBase.java b/src/test/java/com/android/tools/r8/internal/YouTubeCompilationTestBase.java
index b9c868c..b3853ef 100644
--- a/src/test/java/com/android/tools/r8/internal/YouTubeCompilationTestBase.java
+++ b/src/test/java/com/android/tools/r8/internal/YouTubeCompilationTestBase.java
@@ -18,9 +18,7 @@
 
 public abstract class YouTubeCompilationTestBase extends CompilationTestBase {
 
-  static final String APK = "YouTubeRelease_unsigned.apk";
   static final String DEPLOY_JAR = "YouTubeRelease_deploy.jar";
-  static final String PG_JAR = "YouTubeRelease_proguard.jar";
   static final String PG_MAP = "YouTubeRelease_proguard.map";
   static final String PG_CONF = "YouTubeRelease_proguard.config";
   static final String PG_PROTO_CONF = "YouTubeRelease_proto_safety.pgconf";
@@ -120,9 +118,4 @@
   Path getReleaseProguardMap() {
     return Paths.get(base).resolve(PG_MAP);
   }
-
-  void runR8AndCheckVerification(CompilationMode mode, String input) throws Exception {
-    runAndCheckVerification(
-        CompilerUnderTest.R8, mode, base + APK, null, null, ImmutableList.of(base + input));
-  }
 }