[Buildbot-commits] buildbot/buildbot/test test_vc.py,1.88,1.89

Brian Warner warner at users.sourceforge.net
Tue May 27 00:52:19 UTC 2008


Update of /cvsroot/buildbot/buildbot/buildbot/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11449/buildbot/test

Modified Files:
	test_vc.py 
Log Message:
[project @ #281:make-user-info.patch]
Configure username and email in case the user running trial does not
have git config in their home directory.

Original author: dustin at v.igoro.us
Date: 2008-05-17 20:11:42+00:00

Index: test_vc.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/test/test_vc.py,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -d -r1.88 -r1.89
--- test_vc.py	22 May 2008 22:12:57 -0000	1.88
+++ test_vc.py	27 May 2008 00:52:17 -0000	1.89
@@ -2565,6 +2565,10 @@
         yield w; w.getResult()
         w = self.dovc(tmp, ["add", "."])
         yield w; w.getResult()
+        w = self.dovc(tmp, ["config", "user.email", "buildbot-trial at localhost"])
+        yield w; w.getResult()
+        w = self.dovc(tmp, ["config", "user.name", "Buildbot Trial"])
+        yield w; w.getResult()
         w = self.dovc(tmp, ["commit", "-m", "initial_import"])
         yield w; w.getResult()
 





More information about the Commits mailing list