blob: e12272675b235d0564f0059ecfb6ce53cadc3ee8 (
plain)
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
#
# Author: Petter Reinholdtsen <pere@td.org.uit.no>
#
# Java regression tester for DejaGNU
#
load_lib target.exp
#
# Compile and run all available java source
#
proc test-java-source { } {
global srcdir
global subdir
global runtests
# Find all Java-files
foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.java]] {
# If we're only testing specific files and this isn't one of them,
# skip it.
if ![runtest_file_p $runtests $src] then {
continue
}
java-compile-execute $src
}
# Find all jasmin (java assambler) files
foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.j]] {
# If we're only testing specific files and this isn't one of them,
# skip it.
if ![runtest_file_p $runtests $src] then {
continue
}
jasmin-assemble-execute $src
}
}
#
# Compile #args
#
proc java-compile { args } {
set src $args
set output ""
set options ""
set comp_output [javac-target-compile "$src" "$output" executable $options];
}
#
# Assemble #args
#
proc jasmin-assemble { args } {
set src $args
set output ""
set options ""
set comp_output [jasmin-target-assemble "$src" "$output" executable $options];
}
#
# Compile $args and execute java class runtime_test
#
proc java-compile-execute { args } {
global srcdir
global subdir
set comp_output [java-compile $args]
if ![regexp "^$" $comp_output] {
# Do not care about kaffes stupid messages
#fail $args
#print "$comp_output"
#return
}
global JAVA
set java $JAVA
set classpath [getenv CLASSPATH]
setenv CLASSPATH "${srcdir}/$subdir:$classpath"
# XXX There must be a better way to get basename
catch {exec basename $args .java} basename
catch {exec $java $basename} run_output
exec rm -f "${srcdir}/$subdir/$basename.class"
set lines ""
foreach line [split $run_output \n] {
if [regexp "PASSED:.*" $line] {
if ![regexp "^$" $lines] {
fail "$args $lines"
}
pass "$args $line"
} else {
if [regexp "FAILED:.*" $line] {
fail "$args $line"
} else {
# Accumulate "wild" lines
if ![regexp "^$" $lines] {
set lines "$lines\n $line"
} else {
set lines "$line"
}
}
}
}
if ![regexp "^$" $lines] {
fail "$args $lines"
}
# Reset CLASSPATH
setenv CLASSPATH "$classpath"
return;
}
#
# Compile $args and execute java class runtime_test
#
proc jasmin-assemble-execute { args } {
global srcdir
global subdir
set comp_output [jasmin-assemble $args]
if ![regexp "^$" $comp_output] {
#fail $args
#print "$comp_output"
#return
}
# XXX Should use some default value
global JAVA
set java $JAVA
set classpath [getenv CLASSPATH]
setenv CLASSPATH "${srcdir}/$subdir:$classpath"
# XXX There must be a better way to get basename
catch {exec basename $args .j} basename
catch {exec $java $basename} run_output
exec rm -f "${srcdir}/$subdir/$basename.class"
set lines ""
foreach line [split $run_output \n] {
if [regexp "PASSED:.*" $line] {
if ![regexp "^$" $lines] {
fail "$args $lines"
}
pass "$args $line"
} else {
if [regexp "FAILED:.*" $line] {
fail "$args $line"
} else {
# Accumulate "wild" lines
if ![regexp "^$" $lines] {
set lines "$lines\n $line"
} else {
set lines "$line"
}
}
}
}
if ![regexp "^$" $lines] {
fail "$args $lines"
}
# Reset CLASSPATH
setenv CLASSPATH "$classpath"
return;
}
#
# Compile java source
#
proc javac-target-compile { source dest type options } {
# XXX Do it the simple way - should use target_compile
global JAVAC
set javac $JAVAC
catch {exec $javac $source} comp_output
return $comp_output
# set options ""
# lappend options "compiler=javac"
# lappend options "additional_flags=-g"
# lappend options "libs="
# lappend options "ldflags="
# return [target_compile $source $dest $type $options]
}
#
# Compile jasmin (java assambly) source
#
proc jasmin-target-assemble { source dest type options } {
global srcdir
global subdir
# XXX Do it the simple way - should use target_compile
global JAVA
set java $JAVA
catch {exec $java jasmin.Main -d $srcdir/$subdir $source} comp_output
return comp_output;
# set options ""
# lappend options "compiler=javac"
# lappend options "additional_flags=-g"
# lappend options "libs="
# lappend options "ldflags="
# return [target_compile $source $dest $type $options]
}
|