Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
Disable tests on bootstrap
Browse files Browse the repository at this point in the history
since augmentations are not available at bootstrap, tests failed.
  • Loading branch information
yloiseau committed Jul 6, 2015
1 parent 44b7356 commit 948a481
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/test/java/fr/insalyon/citi/golo/compiler/CompileAndRunTest.java 100755 → 100644
Expand Up @@ -1849,13 +1849,16 @@ public void test_named_parameters() throws Throwable {

@Test
public void destructuring() throws Throwable {
if (bootstraping()) {
return;
}
Class<?> moduleClass = compileAndLoadGoloModule(SRC, "destruct.golo");
for (Method testMethod : getTestMethods(moduleClass)) {
try {
testMethod.invoke(null);
} catch (InvocationTargetException e) {
fail("method " + testMethod.getName() + " in " + SRC + "destruct.golo failed: " +
e.getCause().getMessage());
e.getCause());
}
}
}
Expand Down

0 comments on commit 948a481

Please sign in to comment.