From 80242814aae90145f27bfcf2963ce572c862f464 Mon Sep 17 00:00:00 2001
From: Lukas Stadler <lukas.stadler@oracle.com>
Date: Fri, 21 Oct 2016 14:43:32 +0200
Subject: [PATCH] make test selection in ci.hocon more specific

---
 ci.hocon             | 2 +-
 mx.fastr/mx_fastr.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci.hocon b/ci.hocon
index 8ce0fce685..a2fbe7d9cd 100644
--- a/ci.hocon
+++ b/ci.hocon
@@ -79,7 +79,7 @@ gateCmd : ["mx", "--strict-compliance", "rgate", "--strict-mode", "-t"]
 
 gateTestCommon : ${common} {
   run : [
-    ${gateCmd} ["Versions,JDKReleaseInfo,BuildJavaWithJavac,UnitTests: ExpectedTestOutput file check,UnitTests"]
+    ${gateCmd} ["Versions,JDKReleaseInfo,BuildJavaWithJavac,UnitTests: ExpectedTestOutput file check,UnitTests: with specials"]
   ]
 }
 
diff --git a/mx.fastr/mx_fastr.py b/mx.fastr/mx_fastr.py
index 05697976e8..cb808aa4ca 100644
--- a/mx.fastr/mx_fastr.py
+++ b/mx.fastr/mx_fastr.py
@@ -257,7 +257,7 @@ def _fastr_gate_runner(args, tasks):
             if junit(['--J', '@-DR:-UseSpecials', '--tests', _gate_noapps_unit_tests()]) != 0:
                 t.abort('unit tests failed')
 
-    with mx_gate.Task('UnitTests', tasks) as t:
+    with mx_gate.Task('UnitTests: with specials', tasks) as t:
         if t:
             if junit(['--tests', _gate_unit_tests()]) != 0:
                 t.abort('unit tests failed')
-- 
GitLab