1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-12-28 01:29:44 +00:00

Disabling all test cases - replacing with trivial test.

This commit is contained in:
jespergravgaard 2018-11-07 23:45:29 +01:00
parent 516205e1a4
commit 659b274a60
2 changed files with 13 additions and 0 deletions

View File

@ -30,6 +30,8 @@ public class TestFragments {
AsmFragmentTemplateUsages.logUsages(log, false, false, false, false, false, false);
}
/*
@Test
public void testAssignmentsBu() throws IOException, URISyntaxException {
testFragments("fragments-assignment-copy", assignmentsBu());
@ -45,6 +47,8 @@ public class TestFragments {
testFragments("fragments-assignment-binary", assignmentsBinaryBu());
}
*/
private void testFragments(String fileName, Collection<String> signatures) throws IOException, URISyntaxException {
CompileLog log = new CompileLog();
int cnt = 0;

View File

@ -44,6 +44,11 @@ public class TestPrograms {
AsmFragmentTemplateUsages.logUsages(log, false, false, false, false, false, false);
}
public void testTest() {
return;
}
/*
@Test
public void testFastMultiply8() throws IOException, URISyntaxException {
compileAndCompare("examples/fastmultiply/fastmultiply8.kc");
@ -1121,6 +1126,8 @@ public class TestPrograms {
return binFile;
}
*/
/**
* Ensures that the path to the passed file is created.
* @param file The file to create a path for
@ -1143,4 +1150,6 @@ public class TestPrograms {
return binDir;
}
}