comparison mx/commands.py @ 7155:c356cab093bc

added execution of the Graal API unittest with non-GraalVM HotSpot builds to the gate
author Doug Simon <doug.simon@oracle.com>
date Wed, 12 Dec 2012 21:55:50 +0100
parents 5d0bb7d52783
children 76c9023ed438
comparison
equal deleted inserted replaced
7154:5d0bb7d52783 7155:c356cab093bc
842 842
843 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild) 843 t = Task('DaCapo_pmd:' + theVm + ':' + vmbuild)
844 dacapo(['pmd']) 844 dacapo(['pmd'])
845 tasks.append(t.stop()) 845 tasks.append(t.stop())
846 846
847 t = Task('UnitTests:' + theVm + ':' + vmbuild)
848 unittest(['@-XX:CompileCommand=exclude,*::run*', 'graal.api'])
849 tasks.append(t.stop())
850
847 except KeyboardInterrupt: 851 except KeyboardInterrupt:
848 total.abort(1) 852 total.abort(1)
849 853
850 except BaseException as e: 854 except BaseException as e:
851 import traceback 855 import traceback