Welcome to mirror list, hosted at ThFree Co, Russian Federation.

coding_tests.pro « coding_tests « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c6aee3614e259fd58a6da58534881edb0bc6b80d (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
# Coding tests.
TARGET = coding_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app

ROOT_DIR = ../..
DEPENDENCIES = coding base minizip tomcrypt

include($$ROOT_DIR/common.pri)

win32-g++: LIBS *= -lpthread

SOURCES += ../../testing/testingmain.cpp \
    arithmetic_codec_test.cpp \
    base64_for_user_id_test.cpp \
    base64_test.cpp \
    bit_streams_test.cpp \
#    blob_storage_test.cpp \
    coder_util_test.cpp \
    compressed_bit_vector_test.cpp \
#    compressed_varnum_vector_test.cpp \
    dd_vector_test.cpp \
    diff_test.cpp \
    endianness_test.cpp \
    file_container_test.cpp \
    file_data_test.cpp \
    file_sort_test.cpp \
    file_utils_test.cpp \
    hex_test.cpp \
    huffman_test.cpp \
    mem_file_reader_test.cpp \
    mem_file_writer_test.cpp \
    multilang_utf8_string_test.cpp \
    png_decoder_test.cpp \
    reader_cache_test.cpp \
    reader_test.cpp \
    reader_writer_ops_test.cpp \
    sha2_test.cpp \
    timsort_test.cpp \
    trie_test.cpp \
    uri_test.cpp \
    url_encode_test.cpp \
    value_opt_string_test.cpp \
    var_record_reader_test.cpp \
    var_serial_vector_test.cpp \
    varint_test.cpp \
#    varint_vector_test.cpp \
    writer_test.cpp \
    zip_creator_test.cpp \
    zip_reader_test.cpp \

HEADERS += \
    coder_test.hpp \
    compressor_test_utils.hpp \
    reader_test.hpp \