##// 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:

r3736:ad3d5b43 default
r8063:ee8d9b93 default
Show More
test-basic
12 lines | 135 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
mkdir t
cd t
hg init
echo a > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m test -d "1000000 0"
mpm@selenic.com
Add a simple testing framework...
r331 hg history
Matt Mackall
make manifest friendlier...
r3736 hg manifest --debug
mpm@selenic.com
Add a simple testing framework...
r331 hg cat a
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 hg verify