annotate mxtool/mx.mx/suite.py @ 22346:426a7a36de53

Move IntValueMap/ValueSet to c.o.g.lir/util.
author Josef Eisl <josef.eisl@jku.at>
date Fri, 24 Jul 2015 12:14:50 +0200
parents 0defcb691fe2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
1 suite = {
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
2 "mxversion" : "1.0",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
3 "name" : "mx",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
4 "libraries" : {
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
5
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
6 # ------------- Libraries -------------
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
7
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
8 "FINDBUGS_DIST" : {
22031
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
9 "path" : "lib/findbugs-dist-3.0.0.zip",
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
10 "urls" : [
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
11 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/findbugs-3.0.0.zip",
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
12 "http://sourceforge.net/projects/findbugs/files/findbugs/3.0.0/findbugs-3.0.0.zip/download",
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
13 ],
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
14 "sha1" : "6e56d67f238dbcd60acb88a81655749aa6419c5b",
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
15 },
434fbaaf53d7 moved findbugs support from mx_graal.py to mx_findbugs.py
Doug Simon <doug.simon@oracle.com>
parents: 22020
diff changeset
16
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
17 "JUNIT" : {
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
18 "path" : "lib/junit-4.11.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
19 "urls" : [
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
20 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/junit-4.11.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
21 "https://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
22 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
23 "sha1" : "4e031bb61df09069aeb2bffb4019e7a5034a4ee0",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
24 "eclipse.container" : "org.eclipse.jdt.junit.JUNIT_CONTAINER/4",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
25 "sourcePath" : "lib/junit-4.11-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
26 "sourceUrls" : [
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
27 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/junit-4.11-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
28 "https://search.maven.org/remotecontent?filepath=junit/junit/4.11/junit-4.11-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
29 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
30 "sourceSha1" : "28e0ad201304e4a4abf999ca0570b7cffc352c3c",
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
31 "dependencies" : ["HAMCREST"],
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
32 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
33
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
34 "CHECKSTYLE" : {
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
35 "path" : "lib/checkstyle-6.0-all.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
36 "urls" : [
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
37 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/checkstyle-6.0-all.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
38 "jar:http://sourceforge.net/projects/checkstyle/files/checkstyle/6.0/checkstyle-6.0-bin.zip/download!/checkstyle-6.0/checkstyle-6.0-all.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
39 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
40 "sha1" : "2bedc7feded58b5fd65595323bfaf7b9bb6a3c7a",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
41 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
42
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
43 "HAMCREST" : {
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
44 "path" : "lib/hamcrest-core-1.3.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
45 "urls" : [
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
46 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/hamcrest-core-1.3.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
47 "https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
48 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
49 "sha1" : "42a25dc3219429f0e5d060061f71acb49bf010a0",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
50 "sourcePath" : "lib/hamcrest-core-1.3-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
51 "sourceUrls" : [
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
52 "http://lafo.ssw.uni-linz.ac.at/graal-external-deps/hamcrest-core-1.3-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
53 "https://search.maven.org/remotecontent?filepath=org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
54 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
55 "sourceSha1" : "1dc37250fbc78e23a65a67fbbaf71d2e9cbc3c0b",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
56 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
57 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
58
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
59 "projects" : {
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
60
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
61 "com.oracle.mxtool.junit" : {
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
62 "subDir" : "java",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
63 "sourceDirs" : ["src"],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
64 "dependencies" : [
22084
0defcb691fe2 mx: removed redundant definitions for JUNIT, HAMCREST and CHECKSTYLE libraries
Doug Simon <doug.simon@oracle.com>
parents: 22031
diff changeset
65 "JUNIT",
22020
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
66 ],
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
67 "javaCompliance" : "1.8",
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
68 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
69 },
36a7ec14279d moved unit test support from mx_graal.py to mx.py
Doug Simon <doug.simon@oracle.com>
parents:
diff changeset
70 }