summaryrefslogtreecommitdiffstats
path: root/src/zstd/contrib/pzstd/test/BUCK
blob: 6d3fdd3c269b41831137bdc06c621ac02e8fb01a (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
cxx_test(
    name='options_test',
    srcs=['OptionsTest.cpp'],
    deps=['//contrib/pzstd:options'],
)

cxx_test(
    name='pzstd_test',
    srcs=['PzstdTest.cpp'],
    deps=[
        ':round_trip',
        '//contrib/pzstd:libpzstd',
        '//contrib/pzstd/utils:scope_guard',
        '//programs:datagen',
    ],
)

cxx_binary(
    name='round_trip_test',
    srcs=['RoundTripTest.cpp'],
    deps=[
        ':round_trip',
        '//contrib/pzstd/utils:scope_guard',
        '//programs:datagen',
    ]
)

cxx_library(
    name='round_trip',
    header_namespace='test',
    exported_headers=['RoundTrip.h'],
    deps=[
        '//contrib/pzstd:libpzstd',
        '//contrib/pzstd:options',
        '//contrib/pzstd/utils:scope_guard',
    ]
)