Ben Peart [off-list ref] writes:
quoted hunk
diff --git a/t/t1700-split-index.sh b/t/t1700-split-index.sh
index 39133bcbc8..f613dd72e3 100755
--- a/t/t1700-split-index.sh
+++ b/t/t1700-split-index.sh
@@ -7,6 +7,7 @@ test_description='split index mode tests'
# We need total control of index splitting here
sane_unset GIT_TEST_SPLIT_INDEX
sane_unset GIT_FSMONITOR_TEST
+export GIT_TEST_DISABLE_EOIE=true
test_expect_success 'enable split index' '
git config splitIndex.maxPercentChange 100 &&
It is safer to squash the following in; we may want to revisit the
decision test-lint makes on this issue later, though.
-- >8 --
Subject: [PATCH] SQUASH???
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#export
specifies how "export name[=word]" ought to work, but because
writing "name=word; export name" is not so much more cumbersome
and some older shells that do not understand the former do grok
the latter. test-lint also recommends spelling it this way.
---
t/t1700-split-index.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/t/t1700-split-index.sh b/t/t1700-split-index.sh
index f613dd72e3..dab97c2187 100755
--- a/t/t1700-split-index.sh
+++ b/t/t1700-split-index.sh
@@ -7,7 +7,7 @@ test_description='split index mode tests'
# We need total control of index splitting here
sane_unset GIT_TEST_SPLIT_INDEX
sane_unset GIT_FSMONITOR_TEST
-export GIT_TEST_DISABLE_EOIE=true
+GIT_TEST_DISABLE_EOIE=true; export GIT_TEST_DISABLE_EOIE
test_expect_success 'enable split index' '
git config splitIndex.maxPercentChange 100 &&
--
2.19.0