summaryrefslogtreecommitdiff
path: root/java/test/slice.gradle
blob: 9be51b43a651cb8c000d5c2374100ac402e05c60 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

task testSliceTask {
    slice {
        java {
            set1 {
                files = fileTree(dir: testDir, includes:['Ice/adapterDeactivation/*.ice',
                                                     'Ice/ami/*.ice',
                                                     'Ice/admin/*.ice',
                                                     'Ice/background/*.ice',
                                                     'Ice/binding/*.ice',
                                                     'Ice/classLoader/*.ice',
                                                     'Ice/custom/*.ice',
                                                     'Ice/defaultServant/*.ice',
                                                     'Ice/defaultValue/*.ice',
                                                     'Ice/dispatcher/*.ice',
                                                     'Ice/echo/*.ice',
                                                     'Ice/exceptions/*.ice',
                                                     'Ice/facets/*.ice',
                                                     'Ice/faultTolerance/*.ice',
                                                     'Ice/hash/*.ice',
                                                     'Ice/hold/*.ice',
                                                     'Ice/info/*.ice',
                                                     'Ice/inheritance/*.ice',
                                                     'Ice/interceptor/*.ice',
                                                     'Ice/interrupt/*.ice',
                                                     'Ice/invoke/*.ice',
                                                     'Ice/location/*.ice',
                                                     'Ice/metrics/*.ice',
                                                     'Ice/networkProxy/*.ice',
                                                     'Ice/operations/*.ice',
                                                     'Ice/proxy/*.ice',
                                                     'Ice/retry/*.ice',
                                                     'Ice/seqMapping/*.ice',
                                                     'Ice/servantLocator/*.ice',
                                                     'Ice/serialize/*.ice',
                                                     'Ice/slicing/exceptions/*.ice',
                                                     'Ice/slicing/objects/*.ice',
                                                     'Ice/timeout/*.ice',
                                                     'Ice/acm/*.ice',
                                                     'Ice/throughput/*.ice',
                                                     'Ice/threadPoolPriority/*.ice',
                                                     'Ice/udp/*.ice',
                                                     'Ice/objects/*.ice',
                                                     'Ice/optional/*.ice',
                                                     'Ice/stream/*.ice',
                                                     'Ice/enums/*.ice',
                                                     'Glacier2/router/*.ice',
                                                     'Glacier2/sessionHelper/*.ice',
                                                     'IceDiscovery/simple/*.ice',
                                                     'IceGrid/simple/*.ice',
                                                     'IceBox/admin/*.ice',
                                                     'IceBox/configuration/*.ice',
                                                     'IceSSL/configuration/*.ice',
                                                     'Slice/escape/*.ice',
                                                     'Slice/macros/*.ice',
                                                     'Slice/structure/*.ice'])
            }
            set2 {
                args = "--checksum test.Ice.checksum.Test.SliceChecksums"
                files = fileTree(dir: testDir, includes:['Ice/checksum/Test.ice',
                                                     'Ice/checksum/Types.ice'])
            }
            set3 {
                args = "--checksum test.Ice.checksum.server.Test.SliceChecksums"
                files = fileTree(dir: testDir, includes:['Ice/checksum/TestServer.ice',
                                                     'Ice/checksum/TypesServer.ice'])
            }
            set4 {
                include = ["${testDir}/Ice/packagemd"]
                files = fileTree(dir: testDir, includes:['Ice/packagemd/*.ice'])
            }
        }
    }
}