summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 83b327b)
raw | patch | inline | side by side (parent: 83b327b)
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | |
Thu, 20 Aug 2009 13:46:56 +0000 (20:46 +0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 24 Aug 2009 00:11:28 +0000 (17:11 -0700) |
Commit 06aaaa0bf70fe37d198893f4e25fa73b6516f8a9 may step index format
version up and down, depends on whether extended flags present in the
index. This adds a test to check for index format version.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
version up and down, depends on whether extended flags present in the
index. This adds a test to check for index format version.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
.gitignore | patch | blob | history | |
Makefile | patch | blob | history | |
test-index-version.c | [new file with mode: 0644] | patch | blob |
diff --git a/.gitignore b/.gitignore
index 41c0b20a76ce0fd47c7cafc51777336ce99ce1b0..e3a864c0ad54754de437b9d5bbbdba89211fe339 100644 (file)
--- a/.gitignore
+++ b/.gitignore
test-delta
test-dump-cache-tree
test-genrandom
+test-index-version
test-match-trees
test-parse-options
test-path-utils
diff --git a/Makefile b/Makefile
index daf4296706c4c9c524b6ec4434cadcf95881ea25..3c5b890223f3795e6db120a725dc7f35d5df3d2c 100644 (file)
--- a/Makefile
+++ b/Makefile
TEST_PROGRAMS += test-path-utils$X
TEST_PROGRAMS += test-sha1$X
TEST_PROGRAMS += test-sigchain$X
+TEST_PROGRAMS += test-index-version$X
all:: $(TEST_PROGRAMS)
diff --git a/test-index-version.c b/test-index-version.c
--- /dev/null
+++ b/test-index-version.c
@@ -0,0 +1,14 @@
+#include "cache.h"
+
+int main(int argc, const char **argv)
+{
+ struct cache_header hdr;
+ int version;
+
+ memset(&hdr,0,sizeof(hdr));
+ if (read(0, &hdr, sizeof(hdr)) != sizeof(hdr))
+ return 0;
+ version = ntohl(hdr.hdr_version);
+ printf("%d\n", version);
+ return 0;
+}