William Uther wrote:
> Hi all,
>
> Looks like there are two bugs in the test system. One that someone
> else mentioned recently (I think), but which I can't find in the
> archives: namely a test can fail and still "PASS". The second is a
> failing test, which this patch fixes. The problem is with the test,
> not svnadmin.
>
> later,
>
> \x/ill :-}
>
> * svnadmin_tests.py
> (dump_move_dir_modify_child): Modify the test to not require a
> case-insensitive file system.
You mean, "to not require a *case-sensitive" file system", I hope.
> Index: ./subversion/tests/clients/cmdline/svnadmin_tests.py
> ===================================================================
> --- ./subversion/tests/clients/cmdline/svnadmin_tests.py
> +++ ./subversion/tests/clients/cmdline/svnadmin_tests.py Sun
> Aug 11 00:54:07 2002
> @@ -321,9 +321,9 @@
> repo_dir = sbox.repo_dir
>
> B_path = os.path.join(wc_dir, 'A', 'B')
> - b_path = os.path.join(wc_dir, 'A', 'b')
> - svntest.main.run_svn(None, 'cp', B_path, b_path)
> - svntest.main.file_append(os.path.join(b_path, 'lambda'), 'hello')
> + C_path = os.path.join(wc_dir, 'A', 'C')
> + svntest.main.run_svn(None, 'cp', B_path, C_path)
> + svntest.main.file_append(os.path.join(C_path, 'lambda'), 'hello')
> svntest.main.run_svn(None, 'ci', wc_dir, '--quiet', '-m', 'log msg')
And A/C just happens to already exist in the original greek tree, so
this is not much help. :-)
I'm testing a similar patch.
--
Brane Čibej <brane_at_xbc.nu> http://www.xbc.nu/brane/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Aug 11 22:44:18 2002