1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 | package Torello.BuildJAR;
import java.io.IOException;
import Torello.Java.Build.Testing;
import Torello.Java.ReadOnly.ReadOnlyList;
public class Test
{
private static final ReadOnlyList<String> extraCompilerArgs = ReadOnlyList.of(
"--release",
"11",
"-encoding",
"UTF-8",
"-classpath",
".:Torello/etc/External/",
"-Xlint:all,-processing",
"-Xdiags:verbose"
);
private static final String testingLogDirName = "Torello/etc/logs/tests/";
public static void main(String[] argv) throws IOException
{
Testing.run
(MyPackages.packagesArr, argv, extraCompilerArgs, testingLogDirName, null);
}
}
|