File: build.xml

package info (click to toggle)
javacc 5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 3,452 kB
  • ctags: 3,011
  • sloc: java: 21,299; xml: 2,024; sh: 120; makefile: 24
file content (117 lines) | stat: -rw-r--r-- 4,257 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version='1.0' encoding='ISO-8859-1' ?>

<!--

Copyright (c) 2008, Paul Cager
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
      notice, this list of conditions and the following disclaimer in the
      documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.

-->

<project name="test-exceptions" default="test-exceptions" basedir=".">

  <target name="test-exceptions" depends="" description="run functional test cases">


    <echo>Test 1</echo>
    <delete dir="out-dir" />

    <java failonerror="true" fork="true" classname="javacc" classpath="../../bin/lib/javacc.jar">
      <arg line="Parser.jj" />
    </java>

    <javac srcdir="out-dir"
           destdir="out-dir"
           source="1.5"
	   debug="true"
           classpath="../../bin/lib/javacc.jar">
    </javac>

    <java fork="true" classname="Parser" classpath="out-dir" outputproperty="test1.out" inputstring="ABDC" failonerror="false" />

    <echo>Output:</echo>
    <echo>${test1.out}</echo>
    
    <fail message="Unexpected ParseException">
     <condition>
       <or>
        <not> <contains string="${test1.out}" substring="Exception in thread &quot;main&quot; ParseException: Encountered &quot; &quot;D&quot; &quot;D &quot;&quot; at line 1, column 3." /> </not>
        <not> <contains string="${test1.out}" substring="Was expecting one of:" /> </not>
        <not> <contains string="${test1.out}" substring="    &quot;C&quot; ..." /> </not>
        <not> <contains string="${test1.out}" substring="    &quot;E&quot; ..." /> </not>
       </or>
     </condition>

    </fail>

    <java fork="true" classname="Parser" classpath="out-dir" outputproperty="test1a.out" inputstring="ABEC" failonerror="false" />

    <echo>Output:</echo>
    <echo>${test1a.out}</echo>
    
    <fail message="Unexpected ParseException">
     <condition>
       <or>
        <not> <contains string="${test1a.out}" substring="Exception in thread &quot;main&quot; ParseException: help" /> </not>
       </or>
     </condition>
    </fail>


    <echo>Test 2</echo>
    <delete dir="out-dir" />

    <java failonerror="true" fork="true" classname="javacc" classpath="../../bin/lib/javacc.jar">
      <arg line="-KEEP_LINE_COLUMN=false" />
      <arg line="Parser.jj" />
    </java>

    <javac srcdir="out-dir"
           destdir="out-dir"
           source="1.5"
	   debug="true"
           classpath="../../bin/lib/javacc.jar">
    </javac>

    <java fork="true" classname="Parser" classpath="out-dir" outputproperty="test2.out" inputstring="ABDC" failonerror="false" />

    <echo>Output:</echo>
    <echo>${test2.out}</echo>
    
    <fail message="Unexpected ParseException">
     <condition>
       <or>
        <not> <contains string="${test2.out}" substring="Exception in thread &quot;main&quot; ParseException: Encountered &quot; &quot;D&quot; &quot;D &quot;." /> </not>
        <not> <contains string="${test2.out}" substring="Was expecting one of:" /> </not>
        <not> <contains string="${test2.out}" substring="    &quot;C&quot; ..." /> </not>
       </or>
     </condition>
    </fail>

  </target>

  <target name="clean">
    <delete dir="out-dir" />
  </target>

</project>