]> git.ipfire.org Git - thirdparty/git.git/blame - t/t0013-sha1dc.sh
Git 2.24
[thirdparty/git.git] / t / t0013-sha1dc.sh
CommitLineData
f5f5e7f0
JK
1#!/bin/sh
2
3test_description='test sha1 collision detection'
4. ./test-lib.sh
5TEST_DATA="$TEST_DIRECTORY/t0013"
6
7if test -z "$DC_SHA1"
8then
9 skip_all='skipping sha1 collision tests, DC_SHA1 not set'
10 test_done
11fi
12
13test_expect_success 'test-sha1 detects shattered pdf' '
dae2ff9b 14 test_must_fail test-tool sha1 <"$TEST_DATA/shattered-1.pdf" 2>err &&
f5f5e7f0
JK
15 test_i18ngrep collision err &&
16 grep 38762cf7f55934b34d179ae6a4c80cadccbb7f0a err
17'
18
19test_done