Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Webtools Releng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
webtools
Releng
Webtools Releng
Commits
e4d7e3ee
Commit
e4d7e3ee
authored
14 years ago
by
david_williams
Browse files
Options
Downloads
Patches
Plain Diff
303564 - (improve standalone tests)
parent
64473d5b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
releng.wtpbuilder/distribution/wtp.site/build.xml
+12
-8
12 additions, 8 deletions
releng.wtpbuilder/distribution/wtp.site/build.xml
releng.wtpbuilder/scripts/standaloneTest/standaloneTest.xml
+38
-6
38 additions, 6 deletions
releng.wtpbuilder/scripts/standaloneTest/standaloneTest.xml
with
50 additions
and
14 deletions
releng.wtpbuilder/distribution/wtp.site/build.xml
+
12
−
8
View file @
e4d7e3ee
...
...
@@ -24,14 +24,13 @@
message=
"ant.file: ${ant.file}"
/>
<target
name=
"build"
>
<mkdir
dir=
"${buildDirectory}/${buildLabel}"
/>
<!-- make sure there is a base builder, since we need the launcher -->
<ant
antfile=
"${wtp.builder.home}/scripts/build/runbuild.xml"
target=
"getBaseBuilder"
/>
<!-- make sure there is a base builder, since we need the launcher -->
<ant
antfile=
"${wtp.builder.home}/scripts/build/runbuild.xml"
target=
"getBaseBuilder"
/>
<java
jar=
"${eclipse.launcher}"
fork=
"true"
...
...
@@ -101,6 +100,11 @@
antfile=
"${wtp.builder.home}/scripts/build/label.xml"
/>
<property
file=
"${buildDirectory}/label.properties"
/>
<!-- buildLabel is defined in label.properties -->
<mkdir
dir=
"${buildDirectory}/${buildLabel}"
/>
<property
name=
"publish.xml"
value=
"${component.dir}/publish.xml"
/>
...
...
This diff is collapsed.
Click to expand it.
releng.wtpbuilder/scripts/standaloneTest/standaloneTest.xml
+
38
−
6
View file @
e4d7e3ee
...
...
@@ -65,6 +65,24 @@
unless=
"dependency.properties.exists"
/>
<target
name=
"standaloneTest"
>
<!--
copy our "map direcotry" to main build area. The are checked out by "checkout" script.
Things like 'dependencies.properties' are
required to be located there, such as when "site" is created at end of testing.
-->
<echo
message=
"copy maps"
/>
<echo
message=
"todir: ${buildDirectory}/maps/${env.RELENG}/"
/>
<echo
message=
"from: ${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/"
/>
<copy
todir=
"${buildDirectory}/maps/${env.RELENG}"
>
<fileset
dir=
"${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}"
/>
</copy>
<property
file=
"${build.home}/${env.RELENG_BUILDER}/build.properties"
/>
<property
...
...
@@ -81,18 +99,18 @@
value=
"true"
/>
<property
name=
"getprereq.wtptests"
value=
"true"
/>
value=
"true"
/>
<property
name=
"test.installed"
value=
"true"
/>
value=
"true"
/>
<property
name=
"doNotPublishEarly"
value=
"true"
/>
value=
"true"
/>
<mkdir
dir=
"${env.RECOMMENDED_TMP_DIR}"
/>
dir=
"${env.RECOMMENDED_TMP_DIR}"
/>
<mkdir
dir=
"${testRoot}"
/>
<condition
property=
"installed"
>
<available
...
...
@@ -108,7 +126,7 @@
<antcall
target=
"run"
/>
</target>
<target
name=
"run"
>
<ant
...
...
@@ -131,6 +149,20 @@
file=
"${wtp.builder.home}/distribution/${build.distribution}.tests/templateFiles/index.php"
todir=
"${testRoot}/results"
overwrite=
"true"
/>
<available
file=
"${wtp.builder.home}/distribution/${build.distribution}.site/build.xml"
property=
"createSite"
/>
<antcall
target=
"createSite"
/>
</target>
<target
name=
"createSite"
if=
"createSite"
>
<ant
antfile=
"${wtp.builder.home}/distribution/${build.distribution}.site/build.xml"
/>
</target>
<target
name=
"clean"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment