Minor, fix some warnings such as "unused main argument" in generators

This commit is contained in:
Alexander Udalov
2020-05-15 17:53:42 +02:00
parent 4520e02bae
commit d115a1ff9c
14 changed files with 24 additions and 23 deletions
@@ -9,10 +9,10 @@ import org.jetbrains.kotlin.generators.tests.*;
public class Main {
public static void main(String[] args) {
GenerateCompilerTestsKt.main(args);
GenerateTestsKt.main(args);
GenerateJsTestsKt.main(args);
GenerateJava8TestsKt.main(args);
GenerateCompilerTestsKt.main();
GenerateTestsKt.main();
GenerateJsTestsKt.main();
GenerateJava8TestsKt.main();
GenerateRuntimeDescriptorTestsKt.main();
}
}