changeset 14773:78343531acc7

added checkheaders to the gate
author Doug Simon <doug.simon@oracle.com>
date Wed, 26 Mar 2014 21:10:24 +0100
parents c929a4a3b6c5
children 8594b26fc5d8
files mx/mx_graal.py
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mx/mx_graal.py	Wed Mar 26 21:08:00 2014 +0100
+++ b/mx/mx_graal.py	Wed Mar 26 21:10:24 2014 +0100
@@ -1149,6 +1149,11 @@
             t.abort('Checkstyle warnings were found')
         tasks.append(t.stop())
 
+        t = Task('Checkheaders')
+        if checkheaders([]) != 0:
+            t.abort('Checkheaders warnings were found')
+        tasks.append(t.stop())
+
         t = Task('FindBugs')
         if findbugs([]) != 0:
             t.abort('FindBugs warnings were found')