Move builtins dependency to the top in compiler-tests

When running tests locally, serialized built-ins located in dist/builtins
should have a higher priority than the ones in the bootstrap runtime, on which
almost every module depends by default. Also make it a 'runtime' dependency
because the binary files there can't really change anything at compile time
This commit is contained in:
Alexander Udalov
2015-04-15 22:22:19 +03:00
parent 890d18e7be
commit 43ac20e88a
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="descriptors" />
<orderEntry type="module" module-name="backend" />
<orderEntry type="module" module-name="frontend" />
<orderEntry type="module" module-name="frontend.java" />
+2 -1
View File
@@ -7,8 +7,9 @@
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" scope="RUNTIME" name="builtins" level="project" />
<orderEntry type="module" module-name="util.runtime" />
<orderEntry type="module" module-name="deserialization" />
<orderEntry type="library" exported="" name="builtins" level="project" />
<orderEntry type="library" name="javax.inject" level="project" />
</component>
</module>