On Tue, 1 Sep 2020 22:46:44 GMT, Nir Lisker <nlis...@openjdk.org> wrote:
>> You need to pass a flag to enable system tests (and a second one for Robot >> tests, but if you use snapshot it might not >> need to be). >> gradle -PFULL_TEST=true -PUSE_ROBOT=true :systemTests:test --tests MyTest > >> gradle -PFULL_TEST=true -PUSE_ROBOT=true :systemTests:test --tests MyTest > > What format is `MyTest`? Is it some relative path? It can either be a fully qualified class name (with `.` as separator) or the unqualified name of the test class. The class name must end with exactly `Test`. So for example, try it with `Snapshot1Test`. ------------- PR: https://git.openjdk.java.net/jfx/pull/43