You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2015/08/04 12:50:07 UTC

svn commit: r1694030 - in /subversion/branches/patch-exec/subversion: include/svn_diff.h tests/cmdline/patch_tests.py

Author: danielsh
Date: Tue Aug  4 10:50:07 2015
New Revision: 1694030

URL: http://svn.apache.org/r1694030
Log:
On the patch-exec branch: Housekeeping.

* subversion/include/svn_diff.h
  (svn_patch_t.old_executable_p, svn_patch_t.new_executable_p):
    Add forgotten doxygen @since markup, forgotten in r1692718.

* subversion/tests/cmdline/patch_tests.py
  (patch_adds_executability_nocontents,
   patch_adds_executability_yescontents): Fix copy-paste error.

Modified:
    subversion/branches/patch-exec/subversion/include/svn_diff.h
    subversion/branches/patch-exec/subversion/tests/cmdline/patch_tests.py

Modified: subversion/branches/patch-exec/subversion/include/svn_diff.h
URL: http://svn.apache.org/viewvc/subversion/branches/patch-exec/subversion/include/svn_diff.h?rev=1694030&r1=1694029&r2=1694030&view=diff
==============================================================================
--- subversion/branches/patch-exec/subversion/include/svn_diff.h (original)
+++ subversion/branches/patch-exec/subversion/include/svn_diff.h Tue Aug  4 10:50:07 2015
@@ -1254,6 +1254,8 @@ typedef struct svn_patch_t {
    *
    * #svn_tristate_unknown indicates the patch does not specify the
    * corresponding bit.
+   *
+   * @since New in 1.10.
    */
   /* ### This is currently not parsed out of "index" lines (where it
    * ### serves as an assertion of the executability state, without

Modified: subversion/branches/patch-exec/subversion/tests/cmdline/patch_tests.py
URL: http://svn.apache.org/viewvc/subversion/branches/patch-exec/subversion/tests/cmdline/patch_tests.py?rev=1694030&r1=1694029&r2=1694030&view=diff
==============================================================================
--- subversion/branches/patch-exec/subversion/tests/cmdline/patch_tests.py (original)
+++ subversion/branches/patch-exec/subversion/tests/cmdline/patch_tests.py Tue Aug  4 10:50:07 2015
@@ -5634,7 +5634,6 @@ def patch_adds_executability_nocontents(
   patch_file_path = make_patch_path(sbox)
   svntest.main.file_write(patch_file_path, unidiff_patch)
 
-  ### Patch applies through the unversioned symlink
   expected_output = [
     ' U        %s\n' % sbox.ospath('iota'),
   ]
@@ -5677,7 +5676,6 @@ def patch_adds_executability_yescontents
   patch_file_path = make_patch_path(sbox)
   svntest.main.file_write(patch_file_path, unidiff_patch)
 
-  ### Patch applies through the unversioned symlink
   expected_output = [
     'UU        %s\n' % sbox.ospath('A/mu'),
   ]