[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: svn commit: rev 7814 - in trunk/subversion: libsvn_fs libsvn_fs/util mod_dav_svn tests/libsvn_fs

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2003-11-21 02:28:09 CET

cmpilato@tigris.org writes:

> Author: cmpilato
> Date: Wed Nov 19 23:11:45 2003
> New Revision: 7814

> Modified: trunk/subversion/tests/libsvn_fs/fs-test.c
> ==============================================================================
> --- trunk/subversion/tests/libsvn_fs/fs-test.c (original)
> +++ trunk/subversion/tests/libsvn_fs/fs-test.c Wed Nov 19 23:11:45 2003
> @@ -1355,6 +1355,27 @@
> }
> }
>
> + /* Test that aborting a txn that's already committed fails. */
> + {
> + svn_fs_txn_t *txn4;
> + const char *txn4_name;
> + svn_revnum_t new_rev;
> + const char *conflict;
> + svn_error_t *err;
> +
> + SVN_ERR (svn_fs_begin_txn (&txn4, fs, 0, pool));
> + SVN_ERR (svn_fs_txn_name (&txn4_name, txn4, pool));
> + SVN_ERR (svn_fs_commit_txn (&conflict, &new_rev, txn4, pool));
> + err = svn_fs_abort_txn (txn4, pool);
> + if (! err)
> + return svn_error_create
> + (SVN_ERR_FS_GENERAL, NULL,
> + "expected error trying to abort a committed txn; got none");
> + else if (err->apr_err != SVN_ERR_FS_TRANSACTION_NOT_MUTABLE)
> + return svn_error_create
> + (SVN_ERR_FS_GENERAL, NULL,
> + "got an unexpected error trying to abort a committed txn");
> + }
> return SVN_NO_ERROR;

All three return paths fail to clear or return err.

> }

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Nov 21 02:28:52 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.