~ubuntu-branches/ubuntu/jaunty/ant/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/etc/testcases/taskdefs/gzip.xml

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Gybas
  • Date: 2002-02-14 14:28:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020214142848-2ww7ynmqkj31vlmn
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
 
 
3
<project name="xxx-test" basedir="." default="test1">
 
4
 
 
5
  <target name="test1">
 
6
    <gzip/>
 
7
  </target>
 
8
 
 
9
  <target name="test2">
 
10
    <gzip src=""/>
 
11
  </target>
 
12
 
 
13
  <target name="test3">
 
14
    <gzip zipfile=""/>
 
15
  </target>
 
16
 
 
17
  <target name="test4">
 
18
    <gzip src="." zipfile=""/>
 
19
  </target>
 
20
 
 
21
  <target name="test5">
 
22
    <gzip src="." zipfile="gzip.tmp"/>
 
23
  </target>
 
24
 
 
25
</project>