Sync with 2.36.6
[git/debian.git] / t / t0013-sha1dc.sh
blob9ad76080aa49d46d03e2bb805d039e6a88d87e5c
1 #!/bin/sh
3 test_description='test sha1 collision detection'
5 TEST_PASSES_SANITIZE_LEAK=true
6 . ./test-lib.sh
7 TEST_DATA="$TEST_DIRECTORY/t0013"
9 if test -z "$DC_SHA1"
10 then
11 skip_all='skipping sha1 collision tests, DC_SHA1 not set'
12 test_done
15 test_expect_success 'test-sha1 detects shattered pdf' '
16 test_must_fail test-tool sha1 <"$TEST_DATA/shattered-1.pdf" 2>err &&
17 test_i18ngrep collision err &&
18 grep 38762cf7f55934b34d179ae6a4c80cadccbb7f0a err
21 test_done