Revert "Ignore failures on O devices in JDWP tests."
This reverts commit 3dfaab08c5adbeaa43f363e3b8ae20f71b0a1e05.
Reason for revert: No longer needed, as the ART Buildbot no longer
uses devices running Android Oreo.
Change-Id: Iae1e2fa6aacb92261f949e253a67961afc988421
Test: art/tools/run-jdwp-tests.sh --mode=device
Bug: 74725685
diff --git a/tools/run-jdwp-tests.sh b/tools/run-jdwp-tests.sh
index fbd8077..697de4b 100755
--- a/tools/run-jdwp-tests.sh
+++ b/tools/run-jdwp-tests.sh
@@ -19,16 +19,6 @@
exit 1
fi
-# Prevent JDWP tests from running on the following devices running
-# Android O (they are failing because of a network-related issue), as
-# a workaround for b/74725685:
-# - FA7BN1A04406 (walleye device testing configuration aosp-poison/volantis-armv7-poison-debug)
-# - FA7BN1A04412 (walleye device testing configuration aosp-poison/volantis-armv8-poison-ndebug)
-# - FA7BN1A04433 (walleye device testing configuration aosp-poison/volantis-armv8-poison-debug)
-case "$ANDROID_SERIAL" in
- (FA7BN1A04406|FA7BN1A04412|FA7BN1A04433) exit 0;;
-esac
-
source build/envsetup.sh >&/dev/null # for get_build_var, setpaths
setpaths # include platform prebuilt java, javac, etc in $PATH.