Skip to content
Snippets Groups Projects
Commit b236d7259c2d authored by Kevin Bullock's avatar Kevin Bullock
Browse files

tests: set default date that run-tests.py no longer sets

Since updating run-tests.py in e085b381e8e2, a default date of '0 0' is
no longer set automatically. Restore this by adding it to our own test
suite's default hgrc.
parent 0a4b119fb2b4
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,13 @@
echo "hggit=$(echo $(dirname $TESTDIR))/hggit" >> $HGRCPATH
echo 'mq=' >> $HGRCPATH
# Defaults for testing against hg < 4.3
echo '[defaults]' >> $HGRCPATH
echo 'backout = -d "0 0"' >> $HGRCPATH
echo 'commit = -d "0 0"' >> $HGRCPATH
echo 'shelve = --date "0 0"\n' >> $HGRCPATH
echo 'tag = -d "0 0"\n' >> $HGRCPATH
# Standard checks for external dependencies
# We use the git command-line client and dulwich in pretty much all the tests.
# Thus, to avoid repetitively declaring that requirement in almost every test,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment