mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
16 lines
205 B
Bash
16 lines
205 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2020 Google LLC
|
||
|
#
|
||
|
|
||
|
test_description='reftable unittests'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success 'unittests' '
|
||
|
TMPDIR=$(pwd) && export TMPDIR &&
|
||
|
test-tool reftable
|
||
|
'
|
||
|
|
||
|
test_done
|