Tests for core subproject support
commit1c3e5c4ebc326c5c70350d3f4dc7f2b29e813480
authorAlex Riesen <raa.lkml@gmail.com>
Wed, 18 Apr 2007 23:55:45 +0000 (19 01:55 +0200)
committerJunio C Hamano <junkio@cox.net>
Thu, 19 Apr 2007 00:08:42 +0000 (18 17:08 -0700)
treeaca638277f9678f6d89936c6c62a44623b024b86
parent04786756f90a734445cc300a5acf9fcfc9fd4c04
Tests for core subproject support

The following tests available:

- create subprojects: create a directory in the superproject,
  initialize a git repo in it, and try adding it in super project.
  Make a commit in superproject

- check if fsck ignores the subprojects: it just should give no errors

- check if commit in a subproject detected: make a commit in
  subproject, git-diff-files in superproject should detect it

- check if a changed subproject HEAD can be committed: try
  "git-commit -a" in superproject. It should commit changed
  HEAD of a subproject

- check if diff-index works for subproject elements: compare the index
  (changed by previuos tests) with the initial commit (which created
  two subprojects). Should show a change for the recently changed subproject

- check if diff-tree works for subproject elements: do the same, just use
  git-diff-tree. This test is somewhat redundant, I just added it for
  completeness (diff, diff-files, and diff-index are already used)

- check if git diff works for subproject elements: try to limit
  the diff for the name of a subproject in superproject:
     git diff HEAD^ HEAD -- subproject

- check if clone works: try a clone of superproject and compare
  "git ls-files -s" output in superproject and cloned repo

- removing and adding subproject: rename test. Currently implemented
  as "git-update-index --force-remove", "mv" and "git-add".

- checkout in superproject: try to checkout the initial commit

Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t3040-subprojects-basic.sh [new file with mode: 0755]