Disable test on gcstress and debug.
The test has been failing for a while now:
org.apache.harmony.jpda.tests.jdwp.ClassType_SetValuesTest#testSetValues001.
Disable it to get the bot back green.
Test: org.apache.harmony.jpda.tests.jdwp.ClassType_SetValuesTest#testSetValues001
Bug: 187141551
Change-Id: Ic7ef6500ca48c666e36f0d2d47d03c79d50d1038
diff --git a/tools/external_oj_libjdwp_art_gcstress_debug_failures.txt b/tools/external_oj_libjdwp_art_gcstress_debug_failures.txt
new file mode 100644
index 0000000..c4e39b5
--- /dev/null
+++ b/tools/external_oj_libjdwp_art_gcstress_debug_failures.txt
@@ -0,0 +1,15 @@
+/*
+ * This file contains expectations for ART's buildbot. The purpose of this file is
+ * to temporarily list failing tests and not break the bots.
+ *
+ * This file contains the expectations for the 'libjdwp-aot' and 'libjdwp-jit'
+ * test groups on the chromium buildbot running with 'gcstress' and 'debug'.
+ */
+[
+{
+ description: "Test times out",
+ result: EXEC_FAILED,
+ bug: 187141551,
+ name: "org.apache.harmony.jpda.tests.jdwp.ClassType_SetValuesTest#testSetValues001"
+}
+]
diff --git a/tools/run-libjdwp-tests.sh b/tools/run-libjdwp-tests.sh
index ce70ea2..408676a 100755
--- a/tools/run-libjdwp-tests.sh
+++ b/tools/run-libjdwp-tests.sh
@@ -133,6 +133,11 @@
fi
expect_path=$PWD/art/tools/external_oj_libjdwp_art_failures.txt
+
+if [[ "$debug" = "yes" && "$has_gcstress" = "yes" ]]; then
+ expect_path=$expect_path:$PWD/art/tools/external_oj_libjdwp_art_gcstress_debug_failures.txt
+fi
+
function verbose_run() {
echo "$@"
env "$@"