diff mx/commands.py @ 9824:6fa4b4933892

added check to gate that generated IDE configurations don't break the build
author Doug Simon <doug.simon@oracle.com>
date Sun, 26 May 2013 13:15:51 +0200
parents 8e33b4ebfef1
children 0f7ca53be929 2a091d2987bd
line wrap: on
line diff
--- a/mx/commands.py	Sun May 26 13:09:27 2013 +0200
+++ b/mx/commands.py	Sun May 26 13:15:51 2013 +0200
@@ -973,6 +973,11 @@
         clean(cleanArgs)
         tasks.append(t.stop())
 
+        t = Task('IDEConfigCheck')
+        mx.ideclean([])
+        mx.ideinit([])
+        tasks.append(t.stop())
+
         eclipse_exe = os.environ.get('ECLIPSE_EXE')
         if eclipse_exe is not None:
             t = Task('CodeFormatCheck')