1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-17 18:56:09 +02:00
git/t/t0301-credential-cache.sh

19 lines
484 B
Bash
Raw Normal View History

#!/bin/sh
test_description='credential-cache tests'
. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-credential.sh
# don't leave a stale daemon running
trap 'code=$?; git credential-cache exit; (exit $code); die' EXIT
helper_test cache
helper_test_timeout cache --timeout=1
# we can't rely on our "trap" above working after test_done,
# as test_done will delete the trash directory containing
# our socket, leaving us with no way to access the daemon.
git credential-cache exit
test_done