mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
52 lines
861 B
Bash
52 lines
861 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
source test/setup
|
|
|
|
use Test::More
|
|
|
|
clone-foo-and-bar
|
|
|
|
subrepo-clone-bar-into-foo
|
|
|
|
before="$(date -r $OWNER/foo/Foo '+%s')"
|
|
|
|
(
|
|
cd $OWNER/foo
|
|
add-new-files bar/file
|
|
add-new-files .gitrepo
|
|
)
|
|
|
|
save-original-state $OWNER/foo bar
|
|
|
|
# Make sure that time stamps differ
|
|
sleep 1
|
|
|
|
is "$(
|
|
cd $OWNER/foo
|
|
git subrepo branch bar
|
|
)" \
|
|
"Created branch 'subrepo/bar' and worktree '.git/tmp/subrepo/bar'." \
|
|
"subrepo branch command output is correct"
|
|
|
|
|
|
after="$(date -r $OWNER/foo/Foo '+%s')"
|
|
assert-original-state $OWNER/foo bar
|
|
|
|
# Check that we haven't checked out any temporary files
|
|
is "$before" "$after" \
|
|
"No modification on Foo"
|
|
|
|
test-exists "$OWNER/foo/.git/tmp/subrepo/bar/"
|
|
|
|
is "$(
|
|
cd $OWNER/foo/.git/tmp/subrepo/bar
|
|
git branch | grep \*
|
|
)" \
|
|
"* subrepo/bar" \
|
|
"Correct branch is checked out"
|
|
|
|
done_testing
|
|
|
|
teardown
|