// commented tests from above updated to work in 2.2 - update repo to revision where files are present
eh.run("hg", "update", "-q", "-r", "2", "--cwd", repo.getLocation());
changelogParser.reset();
eh.run("hg", "log", "--debug", "-f", "a", "--cwd", repo.getLocation());
List<HgChangeset> r = cmd.file("a", true).execute();
report("log -f a", r, true);
changelogParser.reset();
eh.run("hg", "log", "--debug", "-f", "dir/b", "--cwd", repo.getLocation());
report("log -f dir/b", cmd.file("dir/b", true).execute(), true);
//