Thread (22 messages) 22 messages, 1 author, 2020-02-07
DORMANTno replies
Revisions (3)
  1. v1 [diff vs current]
  2. v2 [diff vs current]
  3. v3 current

[PATCH v3 08/21] t4211: move SHA-1-specific test cases into a directory

From: brian m. carlson <hidden>
Date: 2020-02-07 00:53:59
Subsystem: the rest · Maintainer: Linus Torvalds

In preparation for adding SHA-256 support to this test, let's move the
SHA-1-specific expected output into a directory called "sha1".  This
will allow us to add a similar directory for SHA-256 as well.

Signed-off-by: brian m. carlson <redacted>
---
 t/t4211-line-log.sh                                 | 2 +-
 t/t4211/{ => sha1}/expect.beginning-of-file         | 0
 t/t4211/{ => sha1}/expect.end-of-file               | 0
 t/t4211/{ => sha1}/expect.move-support-f            | 0
 t/t4211/{ => sha1}/expect.multiple                  | 0
 t/t4211/{ => sha1}/expect.multiple-overlapping      | 0
 t/t4211/{ => sha1}/expect.multiple-superset         | 0
 t/t4211/{ => sha1}/expect.parallel-change-f-to-main | 0
 t/t4211/{ => sha1}/expect.simple-f                  | 0
 t/t4211/{ => sha1}/expect.simple-f-to-main          | 0
 t/t4211/{ => sha1}/expect.simple-main               | 0
 t/t4211/{ => sha1}/expect.simple-main-to-end        | 0
 t/t4211/{ => sha1}/expect.two-ranges                | 0
 t/t4211/{ => sha1}/expect.vanishes-early            | 0
 14 files changed, 1 insertion(+), 1 deletion(-)
 rename t/t4211/{ => sha1}/expect.beginning-of-file (100%)
 rename t/t4211/{ => sha1}/expect.end-of-file (100%)
 rename t/t4211/{ => sha1}/expect.move-support-f (100%)
 rename t/t4211/{ => sha1}/expect.multiple (100%)
 rename t/t4211/{ => sha1}/expect.multiple-overlapping (100%)
 rename t/t4211/{ => sha1}/expect.multiple-superset (100%)
 rename t/t4211/{ => sha1}/expect.parallel-change-f-to-main (100%)
 rename t/t4211/{ => sha1}/expect.simple-f (100%)
 rename t/t4211/{ => sha1}/expect.simple-f-to-main (100%)
 rename t/t4211/{ => sha1}/expect.simple-main (100%)
 rename t/t4211/{ => sha1}/expect.simple-main-to-end (100%)
 rename t/t4211/{ => sha1}/expect.two-ranges (100%)
 rename t/t4211/{ => sha1}/expect.vanishes-early (100%)
diff --git a/t/t4211-line-log.sh b/t/t4211-line-log.sh
index 8319163744..63a3bf28a5 100755
--- a/t/t4211-line-log.sh
+++ b/t/t4211-line-log.sh
@@ -11,7 +11,7 @@ test_expect_success 'setup (import history)' '
 canned_test_1 () {
 	test_expect_$1 "$2" "
 		git log $2 >actual &&
-		test_cmp \"\$TEST_DIRECTORY\"/t4211/expect.$3 actual
+		test_cmp \"\$TEST_DIRECTORY\"/t4211/sha1/expect.$3 actual
 	"
 }
 
diff --git a/t/t4211/expect.beginning-of-file b/t/t4211/sha1/expect.beginning-of-file
similarity index 100%
rename from t/t4211/expect.beginning-of-file
rename to t/t4211/sha1/expect.beginning-of-file
diff --git a/t/t4211/expect.end-of-file b/t/t4211/sha1/expect.end-of-file
similarity index 100%
rename from t/t4211/expect.end-of-file
rename to t/t4211/sha1/expect.end-of-file
diff --git a/t/t4211/expect.move-support-f b/t/t4211/sha1/expect.move-support-f
similarity index 100%
rename from t/t4211/expect.move-support-f
rename to t/t4211/sha1/expect.move-support-f
diff --git a/t/t4211/expect.multiple b/t/t4211/sha1/expect.multiple
similarity index 100%
rename from t/t4211/expect.multiple
rename to t/t4211/sha1/expect.multiple
diff --git a/t/t4211/expect.multiple-overlapping b/t/t4211/sha1/expect.multiple-overlapping
similarity index 100%
rename from t/t4211/expect.multiple-overlapping
rename to t/t4211/sha1/expect.multiple-overlapping
diff --git a/t/t4211/expect.multiple-superset b/t/t4211/sha1/expect.multiple-superset
similarity index 100%
rename from t/t4211/expect.multiple-superset
rename to t/t4211/sha1/expect.multiple-superset
diff --git a/t/t4211/expect.parallel-change-f-to-main b/t/t4211/sha1/expect.parallel-change-f-to-main
similarity index 100%
rename from t/t4211/expect.parallel-change-f-to-main
rename to t/t4211/sha1/expect.parallel-change-f-to-main
diff --git a/t/t4211/expect.simple-f b/t/t4211/sha1/expect.simple-f
similarity index 100%
rename from t/t4211/expect.simple-f
rename to t/t4211/sha1/expect.simple-f
diff --git a/t/t4211/expect.simple-f-to-main b/t/t4211/sha1/expect.simple-f-to-main
similarity index 100%
rename from t/t4211/expect.simple-f-to-main
rename to t/t4211/sha1/expect.simple-f-to-main
diff --git a/t/t4211/expect.simple-main b/t/t4211/sha1/expect.simple-main
similarity index 100%
rename from t/t4211/expect.simple-main
rename to t/t4211/sha1/expect.simple-main
diff --git a/t/t4211/expect.simple-main-to-end b/t/t4211/sha1/expect.simple-main-to-end
similarity index 100%
rename from t/t4211/expect.simple-main-to-end
rename to t/t4211/sha1/expect.simple-main-to-end
diff --git a/t/t4211/expect.two-ranges b/t/t4211/sha1/expect.two-ranges
similarity index 100%
rename from t/t4211/expect.two-ranges
rename to t/t4211/sha1/expect.two-ranges
diff --git a/t/t4211/expect.vanishes-early b/t/t4211/sha1/expect.vanishes-early
similarity index 100%
rename from t/t4211/expect.vanishes-early
rename to t/t4211/sha1/expect.vanishes-early
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help