Gerald Macinenti wrote on Fri, 30 May 2008 at 14:56 +0200:
> But the "make check" that was all good when I was working on the CentOS5 1.4.2
> version skips all the authz tests in trunk (with or without the patch):
> SKIP: authz_tests.py 1: authz issue #2486 - open root
> SKIP: authz_tests.py 2: authz issue #2486 - open directory
> SKIP: authz_tests.py 3: broken authz files cause errors
> SKIP: authz_tests.py 4: test authz for read operations
> SKIP: authz_tests.py 5: test authz for write operations
> SKIP: authz_tests.py 6: test authz for checkout
> SKIP: authz_tests.py 7: test authz for log and tracing path changes
> SKIP: authz_tests.py 8: test authz for checkout and update
> SKIP: authz_tests.py 9: test authz for export with unreadable subfolder
> SKIP: authz_tests.py 10: test authz for aliases
> SKIP: authz_tests.py 11: test the authz validation rules
> SKIP: authz_tests.py 12: test authz for locking
> SKIP: authz_tests.py 13: authz issue #2712
> SKIP: authz_tests.py 14: switched to directory, no read access on parents
>
> why?
Please refer to the definition of 'test_list' in authz_tests.py:
test_list = [ None,
Skip(authz_open_root, svntest.main.is_ra_type_file),
Skip(authz_open_directory, svntest.main.is_ra_type_file),
Skip(broken_authz_file, svntest.main.is_ra_type_file),
Skip(authz_read_access, svntest.main.is_ra_type_file),
Skip(authz_write_access, svntest.main.is_ra_type_file),
Skip(authz_checkout_test, svntest.main.is_ra_type_file),
Skip(authz_log_and_tracing_test, svntest.main.is_ra_type_file),
Skip(authz_checkout_and_update_test,
svntest.main.is_ra_type_file),
Skip(authz_partial_export_test, svntest.main.is_ra_type_file),
SkipUnless(Skip(authz_aliases, svntest.main.is_ra_type_file),
server_authz_has_aliases),
Skip(authz_validate, svntest.main.is_ra_type_file),
Skip(authz_locking, svntest.main.is_ra_type_file),
XFail(SkipUnless(authz_svnserve_anon_access_read,
svntest.main.is_ra_type_svn)),
XFail(Skip(authz_switch_to_directory,
svntest.main.is_ra_type_file)),
]
is_ra_type_file checks if you're running over ra_local.
> I give the tests log in attachment.
>
>
>
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-05-30 15:40:38 CEST