]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t/t*: remove custom GIT_TRACE2_EVENT_NESTING
authorDerrick Stolee <dstolee@microsoft.com>
Mon, 29 Nov 2021 13:47:46 +0000 (13:47 +0000)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Nov 2021 18:23:50 +0000 (10:23 -0800)
The previous change modified GIT_TRACE2_EVENT_NESTING by default within
test-lib.sh. These custom assignments throughout the test suite are no
longer necessary.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t1092-sparse-checkout-compatibility.sh
t/t4216-log-bloom.sh
t/t5310-pack-bitmaps.sh
t/t5705-session-id-in-capabilities.sh
t/t7519-status-fsmonitor.sh

index 16fbd2c6db9db18456b6a02d443b2b518aafc9e0..2de957905b08adf9f306ed0b043555fdf4266e2e 100755 (executable)
@@ -688,7 +688,7 @@ test_expect_success 'submodule handling' '
 test_expect_success 'sparse-index is expanded and converted back' '
        init_repos &&
 
-       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" GIT_TRACE2_EVENT_NESTING=10 \
+       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
                git -C sparse-index -c core.fsmonitor="" reset --hard &&
        test_region index convert_to_sparse trace2.txt &&
        test_region index ensure_full_index trace2.txt
@@ -702,10 +702,10 @@ ensure_not_expanded () {
        then
                shift &&
                test_must_fail env \
-                       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" GIT_TRACE2_EVENT_NESTING=10 \
+                       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
                        git -C sparse-index "$@" || return 1
        else
-               GIT_TRACE2_EVENT="$(pwd)/trace2.txt" GIT_TRACE2_EVENT_NESTING=10 \
+               GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
                        git -C sparse-index "$@" || return 1
        fi &&
        test_region ! index ensure_full_index trace2.txt
index 50f206db55043ff3481b4db4b23937b01bc43cab..8018c12a6a40eac7cf2a33caa0ba1110117904f2 100755 (executable)
@@ -175,13 +175,11 @@ test_expect_success 'persist filter settings' '
        test_when_finished rm -rf .git/objects/info/commit-graph* &&
        rm -rf .git/objects/info/commit-graph* &&
        GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
-               GIT_TRACE2_EVENT_NESTING=5 \
                GIT_TEST_BLOOM_SETTINGS_NUM_HASHES=9 \
                GIT_TEST_BLOOM_SETTINGS_BITS_PER_ENTRY=15 \
                git commit-graph write --reachable --changed-paths &&
        grep "{\"hash_version\":1,\"num_hashes\":9,\"bits_per_entry\":15,\"max_changed_paths\":512" trace2.txt &&
        GIT_TRACE2_EVENT="$(pwd)/trace2-auto.txt" \
-               GIT_TRACE2_EVENT_NESTING=5 \
                git commit-graph write --reachable --changed-paths &&
        grep "{\"hash_version\":1,\"num_hashes\":9,\"bits_per_entry\":15,\"max_changed_paths\":512" trace2-auto.txt
 '
index dcf03d324a25a4bdc14156c6b53c5442f9c3d83b..9104e842621910d51dad6f4ee375ee9a12d44485 100755 (executable)
@@ -35,7 +35,7 @@ test_expect_success 'setup writing bitmaps during repack' '
 '
 
 test_expect_success 'full repack creates bitmaps' '
-       GIT_TRACE2_EVENT_NESTING=4 GIT_TRACE2_EVENT="$(pwd)/trace" \
+       GIT_TRACE2_EVENT="$(pwd)/trace" \
                git repack -ad &&
        ls .git/objects/pack/ | grep bitmap >output &&
        test_line_count = 1 output &&
index eb8c79aafdd6aa4d203ff6d8ab85a191c37a5d9b..ed38c76c29059d3f5363116db1b8231c31b0dc5a 100755 (executable)
@@ -32,7 +32,6 @@ do
                test_when_finished "git -C local push --delete origin new-branch" &&
                cp -r "$LOCAL_PRISTINE" local &&
                git -C local pull --no-rebase origin &&
-               GIT_TRACE2_EVENT_NESTING=5 \
                GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
                git -c protocol.version=$PROTO -C local push \
                        --receive-pack "GIT_TRACE2_EVENT=\"$(pwd)/tr2-server-events\" git-receive-pack" \
@@ -65,7 +64,6 @@ do
                test_when_finished "git -C local push --delete origin new-branch" &&
                cp -r "$LOCAL_PRISTINE" local &&
                git -C local pull --no-rebase origin &&
-               GIT_TRACE2_EVENT_NESTING=5 \
                GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
                git -c protocol.version=$PROTO -C local push \
                        --receive-pack "GIT_TRACE2_EVENT=\"$(pwd)/tr2-server-events\" git-receive-pack" \
index f488d930dfd73f37b1c01b52d4ce5732b38e1d8a..a5e2233cb1957797a864ab0255ed5679bba1d321 100755 (executable)
@@ -390,7 +390,7 @@ test_expect_success 'status succeeds after staging/unstaging' '
 # during a call to 'git status'. Otherwise, we verify that we _do_ call it.
 check_sparse_index_behavior () {
        git -C full status --porcelain=v2 >expect &&
-       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" GIT_TRACE2_EVENT_NESTING=10 \
+       GIT_TRACE2_EVENT="$(pwd)/trace2.txt" \
                git -C sparse status --porcelain=v2 >actual &&
        test_region $1 index ensure_full_index trace2.txt &&
        test_region fsm_hook query trace2.txt &&