1 | void testFilesetPath() throws Exception {↵ | | 1 | void testFilelistPath() throws Exception {↵
|
2 | try {↵ | | 2 | try {↵
|
3 | executeTarget("filesetPath");↵ | | 3 | executeTarget("filelistPath");↵
|
4 | } catch (BuildException e) {↵ | | 4 | } catch (BuildException e) {↵
|
5 | fail("A path can contain filesets: " + e);↵ | | 5 | fail("A path can contain filelists: " + e);↵
|
6 | }↵ | | 6 | }↵
|
7 | }↵ | | 7 | }↵
|
|
8 | // PR 38370↵ | | 8 | // PR 38370↵
|
9 | public void testNestedFilesetPath() throws Exception {↵ | | 9 | public void testNestedFilelistPath() throws Exception {↵
|
10 | try {↵ | | 10 | try {↵
|
11 | executeTarget("nestedFilesetPath");↵ | | 11 | executeTarget("nestedFilelistPath");↵
|
12 | } catch (BuildException e) {↵ | | 12 | } catch (BuildException e) {↵
|
13 | fail("A path can contain nested filesets: " + e);↵ | | 13 | fail("A path can contain nested filelists: " + e);↵
|
14 | }↵ | | 14 | }↵
|
15 | | | 15 |
|