mirror of
https://github.com/facebook/sapling.git
synced 2025-01-08 14:46:47 +03:00
3cc5c5756c
Summary: Move tests to where we are used to them. Note that I don't move comprehensive tests to the `tests` directory, since I think that having them not run when `./run-tests.py` is run without arguments may be a useful thing. In general, we may adopt this concept for the core as well. If we decide we do want to move them, it's very easy to do. Depends on D6719879 Test Plan: - fixups and test runs follow in the stack Reviewers: #sourcecontrol Differential Revision: https://phabricator.intern.facebook.com/D6719883
34 lines
565 B
Bash
Executable File
34 lines
565 B
Bash
Executable File
#!/bin/sh
|
|
# inspired by Python r62868
|
|
|
|
mkdir temp
|
|
cd temp
|
|
svnadmin create repo
|
|
svn co file://`pwd`/repo wc
|
|
export REPO=file://`pwd`/repo
|
|
cd wc
|
|
mkdir branches trunk tags
|
|
svn add *
|
|
svn ci -m 'btt'
|
|
|
|
echo a > trunk/a
|
|
svn add trunk/a
|
|
svn ci -m 'Add file.'
|
|
svn up
|
|
|
|
svn cp trunk branches/badname
|
|
svn ci -m 'Branch to be renamed.'
|
|
svn up
|
|
|
|
svn cp trunk branches/feature
|
|
svn ci -m 'Branch to be unnamed.'
|
|
svn up
|
|
|
|
cd ../..
|
|
svnadmin dump temp/repo > branchmap.svndump
|
|
echo
|
|
echo 'Complete.'
|
|
echo 'You probably want to clean up temp now.'
|
|
echo 'Dump in branchmap.svndump'
|
|
exit 0
|