# HG changeset patch # User Tom Rodriguez # Date 1404243411 25200 # Node ID d91fecb90fc08544b1f76c7674abeab38cb71b8f # Parent 00460aab5c96a4ff62af387d1e9ba3d38d5329f3 Check -Xbatch still works in the gate diff -r 00460aab5c96 -r d91fecb90fc0 mx/mx_graal.py --- a/mx/mx_graal.py Tue Jul 01 19:06:06 2014 +0200 +++ b/mx/mx_graal.py Tue Jul 01 12:36:51 2014 -0700 @@ -1253,6 +1253,12 @@ t.abort(test.name + ' Failed') tasks.append(t.stop()) + # ensure -Xbatch still works + with VM('graal', 'product'): + t = Task('DaCapo_pmd:BatchMode:product') + dacapo(['-Xbatch', 'pmd']) + tasks.append(t.stop()) + if args.jacocout is not None: jacocoreport([args.jacocout])