Add new custom test suite to run the SWTBot tests repeatedly
authorAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Fri, 10 Jul 2015 23:55:56 +0000 (19:55 -0400)
committerAlexandre Montplaisir <alexmonthy@voxpopuli.im>
Thu, 24 Sep 2015 22:15:17 +0000 (18:15 -0400)
Change-Id: Ida815384e4aed172194b830d196f3a595a1dc8d4
Signed-off-by: Alexandre Montplaisir <alexmonthy@voxpopuli.im>
Reviewed-on: https://git.eclipse.org/r/51779
Reviewed-by: Hudson CI
Reviewed-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Tested-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
releng/org.eclipse.tracecompass.alltests/.gitignore
releng/org.eclipse.tracecompass.alltests/src/org/eclipse/tracecompass/alltests/swtbot/SWTBotStressTests.java [new file with mode: 0644]

index 94a2dd146a22340832c88013e9fe92663bb9f2cc..a2c1640309fa6259ae3c159ddd1927fca04036a5 100644 (file)
@@ -1 +1,2 @@
-*.json
\ No newline at end of file
+*.json
+screenshots/
diff --git a/releng/org.eclipse.tracecompass.alltests/src/org/eclipse/tracecompass/alltests/swtbot/SWTBotStressTests.java b/releng/org.eclipse.tracecompass.alltests/src/org/eclipse/tracecompass/alltests/swtbot/SWTBotStressTests.java
new file mode 100644 (file)
index 0000000..ddac4dc
--- /dev/null
@@ -0,0 +1,35 @@
+/*******************************************************************************
+ * Copyright (c) 2015 EfficiOS Inc. and others
+ *
+ * All rights reserved. This program and the accompanying materials are
+ * made available under the terms of the Eclipse Public License v1.0 which
+ * accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *   Alexandre Montplaisir - Initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.tracecompass.alltests.swtbot;
+
+import junit.framework.JUnit4TestAdapter;
+import junit.framework.TestSuite;
+
+/**
+ * Run the {@link RunAllSWTBotTests} suite a lot of times, to catch flaky tests.
+ */
+public class SWTBotStressTests extends TestSuite {
+
+    private static final int NB_RUNS = 20;
+
+    /**
+     * @return Test suite definition
+     */
+    public static TestSuite suite() {
+        TestSuite s = new TestSuite();
+        for (int i = 0; i < NB_RUNS; i++) {
+            s.addTest(new JUnit4TestAdapter(RunAllSWTBotTests.class));
+        }
+        return s;
+    }
+}
\ No newline at end of file
This page took 0.027832 seconds and 5 git commands to generate.