Thread (6 messages) flat view 6 messages, 4 authors, 2016-06-15

Re: [PATCH] git-svn: Support for git-svn propset

From: Eric Sunshine <hidden>
Date: 2016-06-15 23:03:13

On Sun, Dec 7, 2014 at 3:00 AM, Torsten Bögershausen [off-list ref] wrote:
On 2014-12-07 06.45, Torsten Bögershausen wrote:
[]
quoted
quoted
+
+test_expect_success 'add multiple props' '
+    git svn propset svn:keywords "FreeBSD=%H" foo &&
+    git svn propset fbsd:nokeywords yes foo &&
+    echo hello >> foo &&
+    git commit -m "testing propset" foo &&
+    git svn dcommit
+    svn_cmd co "$svnrepo" svn_project &&
+    (cd svn_project && test "`svn propget svn:keywords foo`" = "FreeBSD=%H") &&
+    (cd svn_project && test "`svn propget fbsd:nokeywords foo`" = "yes") &&
+    (cd svn_project && test "`svn proplist -q foo | wc -l`" -eq 2) &&
+    rm -rf svn_project
+    '
+
Ah, another small thing:
the "wc -l" will not work under Mac OS X.
Please see test_line_count() in t/test-lib-functions.sh
My excuse:
I think I am wrong here and I need to correct myself after having looked at other TC's.
The "wc -l" should work under Mac OS X.
More specifically: On Mac OS X, "wc -l" outputs "{whitespace}number"
which won't match "2" with the string '=' operator, however, this case
works because the '-eq' operator coerces the output of "wc -l" to a
number, which can match the 2.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help