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