t / t7112-reset-submodule.shon commit Merge branch 'ab/perf-installed-fix' (82dca95)
   1#!/bin/sh
   2
   3test_description='reset can handle submodules'
   4
   5. ./test-lib.sh
   6. "$TEST_DIRECTORY"/lib-submodule-update.sh
   7
   8KNOWN_FAILURE_SUBMODULE_RECURSIVE_NESTED=1
   9KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS=1
  10KNOWN_FAILURE_SUBMODULE_OVERWRITE_IGNORED_UNTRACKED=1
  11
  12test_submodule_switch_recursing_with_args "reset --keep"
  13
  14test_submodule_forced_switch_recursing_with_args "reset --hard"
  15
  16test_submodule_switch "git reset --keep"
  17
  18test_submodule_switch "git reset --merge"
  19
  20test_submodule_forced_switch "git reset --hard"
  21
  22test_done