File: fileclone.bash

package info (click to toggle)
ccache 4.12.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,188 kB
  • sloc: cpp: 47,282; asm: 28,570; sh: 8,674; ansic: 5,357; python: 685; perl: 68; makefile: 23
file content (57 lines) | stat: -rw-r--r-- 1,856 bytes parent folder | download | duplicates (3)
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
SUITE_fileclone_PROBE() {
    touch file1
    if ! cp --reflink=always file1 file2 >/dev/null 2>&1; then
        echo "file system doesn't support file cloning"
    fi
}

SUITE_fileclone() {
    # -------------------------------------------------------------------------
    TEST "Base case"

    generate_code 1 test.c

    $COMPILER -c -o reference_test.o test.c

    CCACHE_FILECLONE=1 $CCACHE_COMPILE -c test.c
    expect_stat preprocessed_cache_hit 0
    expect_stat cache_miss 1
    expect_stat files_in_cache 2
    expect_equal_object_files reference_test.o test.o

    # Note: CCACHE_DEBUG=1 below is needed for the test case.
    CCACHE_FILECLONE=1 CCACHE_DEBUG=1 $CCACHE_COMPILE -c test.c
    expect_stat preprocessed_cache_hit 1
    expect_stat cache_miss 1
    expect_stat files_in_cache 2
    expect_equal_object_files reference_test.o test.o
    if ! grep -q 'Cloning.*to test.o' test.o.*.ccache-log; then
        test_failed "Did not try to clone file"
    fi
    if grep -q 'Failed to clone' test.o.*.ccache-log; then
        test_failed "Failed to clone"
    fi

    # -------------------------------------------------------------------------
    TEST "Cloning not used for stored non-raw result"

    generate_code 1 test.c

    $COMPILER -c -o reference_test.o test.c

    $CCACHE_COMPILE -c test.c
    expect_stat preprocessed_cache_hit 0
    expect_stat cache_miss 1
    expect_stat files_in_cache 1
    expect_equal_object_files reference_test.o test.o

    # Note: CCACHE_DEBUG=1 below is needed for the test case.
    CCACHE_FILECLONE=1 CCACHE_DEBUG=1 $CCACHE_COMPILE -c test.c
    expect_stat preprocessed_cache_hit 1
    expect_stat cache_miss 1
    expect_stat files_in_cache 1
    expect_equal_object_files reference_test.o test.o
    if grep -q 'Cloning' test.o.*.ccache-log; then
        test_failed "Tried to clone"
    fi
}