Index: trunk/release-tools/upgradeTest.py |
— | — | @@ -84,9 +84,9 @@ |
85 | 85 | |
86 | 86 | def svnCheckout(branch): |
87 | 87 | if os.path.exists(branch): |
88 | | - runCommand("cd %s/phase3 && svn up" % branch) |
| 88 | + runCommand("cd %s/phase3 && svn up -q" % branch) |
89 | 89 | else: |
90 | | - runCommand("svn co http://svn.wikimedia.org/svnroot/mediawiki/%s/phase3 %s/phase3" % (branch, branch)) |
| 90 | + runCommand("svn co -q http://svn.wikimedia.org/svnroot/mediawiki/%s/phase3 %s/phase3" % (branch, branch)) |
91 | 91 | |
92 | 92 | |
93 | 93 | def testUpgrade(dbname, branch): |
— | — | @@ -108,6 +108,7 @@ |
109 | 109 | |
110 | 110 | #dropDatabase(dbname) |
111 | 111 | |
| 112 | +testUpgrade("uptest113", "branches/REL1_13") |
112 | 113 | testUpgrade("uptest112", "branches/REL1_12") |
113 | 114 | testUpgrade("uptest111", "branches/REL1_11") |
114 | 115 | testUpgrade("uptest110", "branches/REL1_10") |