##// END OF EJS Templates
convert/p4: win32 fixes...
convert/p4: win32 fixes * cmd.exe does not know single quotes * win32 does not like trailing whitespace very much. Trade test coverage for maintenance time and drop the trailing whitespaces tests.

File last commit:

r6344:ffeb926d default
r8063:ee8d9b93 default
Show More
test-rebuildstate
19 lines | 246 B | text/plain | TextLexer
#!/bin/sh
# basic test for hg debugrebuildstate
hg init repo
cd repo
touch foo bar
hg ci -Am 'add foo bar'
touch baz
hg add baz
hg rm bar
hg debugrebuildstate
echo '% state dump after'
hg debugstate --nodates | sort
echo '% status'
hg st -A