Skip to content

Commit

Permalink
Fixed: Set a generated suite to default to non-parallel (Mark Derricutt)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeust committed Mar 28, 2009
1 parent 32a38ce commit 36040b1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -10,6 +10,7 @@ Added: IAnnotationTransformer2
Added: @Test(invocationTimeOut), which lets you set a time out for the total time taken by invocationCount
Added: IInvokedMethodListener
Added: -testjar supports jar file with no testng.xml file
Fixed: Set a generated suite to default to non-parallel (Mark Derricutt)
Fixed: -testJar command line parsing bug
Fixed: testng-failed.xml didn't include the listeners
Fixed: annotation transformers were not run when specified in testng.xml
Expand Down
2 changes: 1 addition & 1 deletion build.properties
Expand Up @@ -22,7 +22,7 @@ concurrent.jar=backport-util-concurrent-2.2.jar
# Names of distributions
#
testng.basename=testng
testng.version=5.9beta
testng.version=5.9
jdk14.testng.jar=${testng.basename}-${testng.version}-jdk14.jar
jdk15.testng.jar=${testng.basename}-${testng.version}-jdk15.jar
other.jars.dir=other-jars
Expand Down
5 changes: 3 additions & 2 deletions doc/download.html
Expand Up @@ -15,7 +15,7 @@ <h2 align="center">Downloading TestNG</h2>

<p>

You can <a href="http://testng.org/testng-5.8.zip">download TestNG here</a>.
You can <a href="http://testng.org/testng-5.9.zip">download TestNG here</a>.
</p>
<p>For the Eclipse plug-in, we suggest using the update site:</p>
<ul>
Expand All @@ -34,7 +34,7 @@ <h2 align="center">Downloading TestNG</h2>
<li>Eclipse will then guide you through the process. </li>
</ul>
<p>However, should this method fail, you can also
<a href="http://testng.org/testng-eclipse-5.8.0.2.zip">download the TestNG
<a href="http://testng.org/testng-eclipse-5.9.0.0.zip">download the TestNG
Eclipse plug-in directly</a> and extract it in your eclipse/ directory.</p>
<p>Here are links to older TestNG versions:</p>
<ul>
Expand Down Expand Up @@ -70,6 +70,7 @@ <h2 align="center">Downloading TestNG</h2>
<li><a href="http://testng.org/testng-5.5.zip">5.5</a></li>
<li><a href="http://testng.org/testng-5.6.zip">5.6</a></li>
<li><a href="http://testng.org/testng-5.7.zip">5.7</a></li>
<li><a href="http://testng.org/testng-5.8.zip">5.7</a></li>
</ul>
<p>TestNG is also <a href="http://code.google.com/hosting/search?q=testng&btn=Search+Projects">hosted on Google Code</a>,
where you can download the source through the Subversion repository or subscribe to the various mailing-lists.</p>
Expand Down
4 changes: 2 additions & 2 deletions doc/index.html
Expand Up @@ -29,9 +29,9 @@ <h2>Our book is now available</h2>


<p align="right"><font size="-2"><em>C&eacute;dric Beust (cedric at beust.com)<br>
Current version: 5.8<br>
Current version: 5.9<br>
Created:&nbsp;April 27th, 2004<br>
Last Modified:&nbsp; March 24th, 2008</em></font></p>
Last Modified:&nbsp; March 29th, 2009</em></font></p>


<p>TestNG is a testing framework inspired from JUnit and NUnit but introducing
Expand Down
1 change: 1 addition & 0 deletions src/main/org/testng/xml/LaunchSuite.java
Expand Up @@ -130,6 +130,7 @@ protected XMLStringBuffer createContentBuffer() {
suiteBuffer.setDocType("suite SYSTEM \"" + Parser.TESTNG_DTD_URL + "\"");

Properties attrs = new Properties();
attrs.setProperty("parallel", XmlSuite.PARALLEL_NONE);
attrs.setProperty("name", m_suiteName);
suiteBuffer.push("suite", attrs);

Expand Down
6 changes: 3 additions & 3 deletions update-beust.com
@@ -1,5 +1,5 @@
v=5.8
ev=5.8.0.1
v=5.9
ev=5.9.0.0

set -x

Expand All @@ -8,7 +8,7 @@ scp -r javadocs doc/*.html doc/*.css src/main/testng-1.0.dtd src/testng-1.0.dtd.
scp doc/*.html doc/*.css ${U}@beust.com:w/testng/doc
scp -r javadocs ${U}@beust.com:w/testng
scp dtd/* ${U}@beust.com:w/dtd
(cd ~/java/beust.com; scp -r . ${U}@beust.com:w/eclipse)
#(cd ~/java/beust.com; scp -r . ${U}@beust.com:w/eclipse)


# scp testng-eclipse-${ev}.zip doc/download.html ${U}@beust.com:w/testng
Expand Down

0 comments on commit 36040b1

Please sign in to comment.