# HG changeset patch # User Doug Simon # Date 1369566951 -7200 # Node ID 6fa4b4933892ab23361929bc7a0db6849eeb86ac # Parent 9e6b6d5d6465543da33a8abe7f0baca4a121267b added check to gate that generated IDE configurations don't break the build diff -r 9e6b6d5d6465 -r 6fa4b4933892 mx/commands.py --- 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')