##// END OF EJS Templates
util: test fileno() availability in win32 set_binary()...
util: test fileno() availability in win32 set_binary() Fix suggested by Alexander Belchenko <bialix@ukr.net>

File last commit:

r6296:a9e6b887 default
r6330:4e836769 default
Show More
test-rebuildstate
24 lines | 317 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
echo '% state dump'
hg debugstate --nodates | sort
echo '% status'
hg st -A
hg debugrebuildstate
echo '% state dump'
hg debugstate --nodates | sort
echo '% status'
hg st -A