# HG changeset patch # User Adrian Buehlmann # Date 2008-04-11 07:27:28 # Node ID 7a6243bf209dd2baadc3f62fde7129f235b94b5d # Parent f65ac37f0a158c6391ec3f5964898284607a6690 fixed missing sorting in test-dumprevlog The test failed at random because the order of files was non-deterministic, which produced diffs in test output. diff --git a/tests/test-dumprevlog b/tests/test-dumprevlog --- a/tests/test-dumprevlog +++ b/tests/test-dumprevlog @@ -23,7 +23,7 @@ python $CONTRIBDIR/dumprevlog .hg/store/ echo dumprevlog done # dump all revlogs to file repo.dump -find .hg/store -name "*.i" | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump +find .hg/store -name "*.i" | sort | xargs python $CONTRIBDIR/dumprevlog > ../repo.dump cd ..