OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [dejagnu/] [lib/] [dg.exp] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
# `dg' general purpose testcase driver.
2
# Copyright (C) 94, 95, 96, 97, 98, 1999 Free Software Foundation, Inc.
3
 
4
# This program is free software; you can redistribute it and/or modify
5
# it under the terms of the GNU General Public License as published by
6
# the Free Software Foundation; either version 2 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
 
18
# Please email any bugs, comments, and/or additions to this file to:
19
# dje@cygnus.com.
20
 
21
# This file was written by Doug Evans (dje@cygnus.com).
22
 
23
# This file is based on old-dejagnu.exp.  It is intended to be more extensible
24
# without incurring the overhead that old-dejagnu.exp can.  All test framework
25
# commands appear in the testcase as "{ dg-xxx args ... }".  We pull them out
26
# with one grep, and then run the function(s) named by "dg-xxx".  When running
27
# dg-xxx, the line number that it occurs on is always passed as the first
28
# argument.  We also support different kinds of tools via callbacks.
29
#
30
# The currently supported options are:
31
#
32
# dg-prms-id N
33
#       set prms_id to N
34
#
35
# dg-options "options ..." [{ target selector }]
36
#       specify special options to pass to the tool (eg: compiler)
37
#
38
# dg-do do-what-keyword [{ target/xfail selector }]
39
#       `do-what-keyword' is tool specific and is passed unchanged to
40
#       ${tool}-dg-test.  An example is gcc where `keyword' can be any of:
41
#       preprocess|compile|assemble|link|run
42
#       and will do one of: produce a .i, produce a .s, produce a .o,
43
#       produce an a.out, or produce an a.out and run it (the default is
44
#       compile).
45
#
46
# dg-error regexp comment [{ target/xfail selector } [{.|0|linenum}]]
47
#       indicate an error message  is expected on this line
48
#       (the test fails if it doesn't occur)
49
#       Linenum=0 for general tool messages (eg: -V arg missing).
50
#       "." means the current line.
51
#
52
# dg-warning regexp comment [{ target/xfail selector } [{.|0|linenum}]]
53
#       indicate a warning message  is expected on this line
54
#       (the test fails if it doesn't occur)
55
#
56
# dg-bogus regexp comment [{ target/xfail selector } [{.|0|linenum}]]
57
#       indicate a bogus error message  use to occur here
58
#       (the test fails if it does occur)
59
#
60
# dg-build regexp comment [{ target/xfail selector }]
61
#       indicate the build use to fail for some reason
62
#       (errors covered here include bad assembler generated, tool crashes,
63
#       and link failures)
64
#       (the test fails if it does occur)
65
#
66
# dg-excess-errors comment [{ target/xfail selector }]
67
#       indicate excess errors are expected (any line)
68
#       (this should only be used sparingly and temporarily)
69
#
70
# dg-output regexp [{ target selector }]
71
#       indicate the expected output of the program is 
72
#       (there may be multiple occurrences of this, they are concatenated)
73
#
74
# dg-final { tcl code }
75
#       add some tcl code to be run at the end
76
#       (there may be multiple occurrences of this, they are concatenated)
77
#       (unbalanced braces must be \-escaped)
78
#
79
# "{ target selector }" is a list of expressions that determine whether the
80
# test succeeds or fails for a particular target, or in some cases whether the
81
# option applies for a particular target.  If the case of `dg-do' it specifies
82
# whether the testcase is even attempted on the specified target.
83
#
84
# The target selector is always optional.  The format is one of:
85
#
86
# { xfail *-*-* ... } - the test is expected to fail for the given targets
87
# { target *-*-* ... } - the option only applies to the given targets
88
#
89
# At least one target must be specified, use *-*-* for "all targets".
90
# At present it is not possible to specify both `xfail' and `target'.
91
# "native" may be used in place of "*-*-*".
92
#
93
# Example:
94
#
95
#       [ ... some complicated code ... ]
96
#       return a; /* { dg-build "fatal" "ran out of spill regs" { xfail i386-*-* } } */
97
#
98
# In this example, the compiler use to crash on the "return a;" for some
99
# target and that it still does crash on i386-*-*.  Admittedly, this is a
100
# contrived example.
101
#
102
# ??? It might be possible to add additional optional arguments by having
103
# something like: { dg-error ".*syntax.*" "syntax error" { { foo 1 } ... } }
104
#
105
# Callbacks
106
#
107
# ${tool}-dg-test testfile do-what-keyword extra-flags
108
#
109
#       Run the test, be it compiler, assembler, or whatever.
110
#
111
# ${tool}-dg-prune target_triplet text
112
#
113
#       Optional callback to delete output from the tool that can occur
114
#       even in successful ("pass") situations and interfere with output
115
#       pattern matching.  This also gives the tool an opportunity to review
116
#       the output and check for any conditions which indicate an "untested"
117
#       or "unresolved" state.  An example is if a testcase is too big and
118
#       fills all available ram (which can happen for 16 bit cpus).  The
119
#       result is either the pruned text or
120
#       "::untested|unresolved|unsupported::message"
121
#       (eg: "::unsupported::memory full").
122
#
123
# Notes:
124
# 1) All runnable testcases must return 0 from main() for success.
125
#    You can't rely on getting any return code from target boards, and the
126
#    `exec' command says a program fails if it returns non-zero.
127
#
128
# Language independence is (theoretically) achieved by:
129
#
130
# 1) Using global $tool to indicate the language (eg: gcc, g++, gas, etc.).
131
#    This should only be used to look up other objects.  We don't want to
132
#    have to add code for each new language that is supported.  If this is
133
#    done right, no code needs to be added here for each new language.
134
#
135
# 2) Passing tool options in as arguments.
136
#
137
#    Earlier versions of ${tool}_start (eg: gcc_start) would only take the name
138
#    of the file to compile as an argument.  Newer versions accept a list of
139
#    one or two elements, the second being a string of *all* options to pass
140
#    to the tool.  We require this facility.
141
#
142
# 3) Callbacks.
143
#
144
# Try not to do anything else that makes life difficult.
145
#
146
# The normal way to write a testsuite is to have a .exp file containing:
147
#
148
# load_lib ${tool}-dg.exp
149
# dg-init
150
# dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/foo*]] ...
151
# dg-finish
152
 
153
# Global state variables.
154
# The defaults are for GCC.
155
 
156
# The default do-what keyword.
157
set dg-do-what-default compile
158
 
159
# When dg-interpreter-batch-mode is 1, no execution test or excess error
160
# tests are performed.
161
set dg-interpreter-batch-mode 0
162
 
163
# Line number format.  This is how line numbers appear in program output.
164
set dg-linenum-format ":%d:"
165
proc dg-format-linenum { linenum } {
166
    global dg-linenum-format
167
    return [format ${dg-linenum-format} $linenum]
168
}
169
 
170
# Useful subroutines.
171
 
172
# dg-get-options -- pick out the dg-xxx options in a testcase
173
#
174
# PROG is the file name of the testcase.
175
# The result is a list of options found.
176
#
177
# Example: For the following testcase:
178
#
179
# /* { dg-prms-id 1234 } */
180
# int foo { return 0; } /* { dg-build fatal "some comment" } */
181
#
182
# we return:
183
#
184
# { dg-prms-id 1 1234 } { dg-build 2 fatal "some comment" }
185
 
186
proc dg-get-options { prog } {
187
    set result ""
188
 
189
    set tmp [grep $prog "{\[ \t\]\+dg-\[-a-z\]\+\[ \t\]\+.*\[ \t\]\+}" line]
190
    if ![string match "" $tmp] {
191
        foreach i $tmp {
192
            #send_user "Found: $i\n"
193
            # FIXME: When to use "+" and "\+" isn't clear.
194
            # Seems to me it took awhile to get this to work.
195
            regexp "(\[0-9\]\+)\[ \t\]\+{\[ \t\]+(dg-\[-a-z\]+)\[ \t\]\+(.*)\[ \t\]+}\[^\}\]*(\n|$)" $i i line cmd args
196
            #send_user "Found: $cmd $line $args\n"
197
            append result " { $cmd $line $args }"
198
        }
199
    }
200
 
201
    #send_user "Returning: $result\n"
202
    return $result
203
}
204
 
205
#
206
# Process optional xfail/target arguments
207
#
208
# SELECTOR is "xfail target-triplet-1 ..." or "target target-triplet-1 ..."
209
# `target-triplet' may be "native".
210
# For xfail, the result is "F" (expected to Fail) if the current target is
211
# affected, otherwise "P" (expected to Pass).
212
# For target, the result is "S" (target is Selected) if the target is selected,
213
# otherwise "N" (target is Not selected).
214
#
215
proc dg-process-target { selector } {
216
    global target_triplet
217
 
218
    set isnative [isnative]
219
    set triplet_match 0
220
 
221
    #send_user "dg-process-target: $selector\n"
222
 
223
    set selector [string trim $selector]
224
    if [regexp "^xfail " $selector] {
225
        set what xfail
226
    } elseif [regexp "^target " $selector] {
227
        set what target
228
    } else {
229
        # The use of error here and in other dg-xxx utilities is intentional.
230
        # dg-test will catch them and do the right thing.
231
        error "syntax error in target selector \"$selector\""
232
    }
233
 
234
    # ??? This should work but it doesn't.  tcl bug?
235
    #if [regexp "^${what}(( \[^ \]+-\[^ \]+-\[^ \]+)|( native))+$" $selector tmp selector]
236
    if [regexp "^${what}( \[^ \]+-\[^ \]+-\[^ \]+| native)+$" $selector] {
237
        regsub "^${what} " $selector "" selector
238
        #send_user "selector: $selector\n"
239
        foreach triplet $selector {
240
            if [string match $triplet $target_triplet] {
241
                set triplet_match 1
242
            } elseif { $isnative && $triplet == "native" } {
243
                set triplet_match 1
244
            }
245
        }
246
    } else {
247
        error "syntax error in target selector \"$selector\""
248
    }
249
 
250
    if { $triplet_match } {
251
        return [expr { $what == "xfail" ? "F" : "S" }]
252
    } else {
253
        return [expr { $what == "xfail" ? "P" : "N" }]
254
    }
255
}
256
 
257
# Predefined user option handlers.
258
# The line number is always the first element.
259
# Note that each of these are varargs procs (they have an `args' argument).
260
# Tests for optional arguments are coded with ">=" to simplify adding new ones.
261
 
262
proc dg-prms-id { args } {
263
    global prms_id      ;# this is a testing framework variable
264
 
265
    if { [llength $args] > 2 } {
266
        error "[lindex $args 0]: too many arguments"
267
        return
268
    }
269
 
270
    set prms_id [lindex $args 1]
271
}
272
 
273
#
274
# Set tool options
275
#
276
# Different options can be used for different targets by having multiple
277
# instances, selecting a different target each time.  Since options are
278
# processed in order, put the default value first.  Subsequent occurrences
279
# will override previous ones.
280
#
281
 
282
proc dg-options { args } {
283
    upvar dg-extra-tool-flags extra-tool-flags
284
 
285
    if { [llength $args] > 3 } {
286
        error "[lindex $args 0]: too many arguments"
287
        return
288
    }
289
 
290
    if { [llength $args] >= 3 } {
291
        switch [dg-process-target [lindex $args 2]] {
292
            "S" { set extra-tool-flags [lindex $args 1] }
293
            "N" { }
294
            "F" { error "[lindex $args 0]: `xfail' not allowed here" }
295
            "P" { error "[lindex $args 0]: `xfail' not allowed here" }
296
        }
297
    } else {
298
        set extra-tool-flags [lindex $args 1]
299
    }
300
}
301
 
302
#
303
# Record what to do (compile/run/etc.)
304
#
305
# Multiple instances are supported (since we don't support target and xfail
306
# selectors on one line), though it doesn't make much sense to change the
307
# compile/assemble/link/run field.  Nor does it make any sense to have
308
# multiple lines of target selectors (use one line).
309
#
310
proc dg-do { args } {
311
    upvar dg-do-what do-what
312
 
313
    if { [llength $args] > 3 } {
314
        error "[lindex $args 0]: too many arguments"
315
        return
316
    }
317
 
318
    set selected [lindex ${do-what} 1]  ;# selected? (""/S/N)
319
    set expected [lindex ${do-what} 2]  ;# expected to pass/fail (P/F)
320
 
321
    if { [llength $args] >= 3 } {
322
        switch [dg-process-target [lindex $args 2]] {
323
            "S" {
324
                set selected "S"
325
            }
326
            "N" {
327
                # Don't deselect a target if it's been explicitly selected,
328
                # but indicate a specific target has been selected (so don't
329
                # do this testcase if it's not appropriate for this target).
330
                # The user really shouldn't have multiple lines of target
331
                # selectors, but try to do the intuitive thing (multiple lines
332
                # are OR'd together).
333
                if { $selected != "S" } {
334
                    set selected "N"
335
                }
336
            }
337
            "F" { set expected "F" }
338
            "P" {
339
                # There's nothing to do for "P".  We don't want to clobber a
340
                # previous xfail for this target.
341
            }
342
        }
343
    } else {
344
        # Note: A previous occurrence of `dg-do' with target/xfail selectors
345
        # is a user mistake.  We clobber previous values here.
346
        set selected S
347
        set expected P
348
    }
349
 
350
    switch [lindex $args 1] {
351
        "preprocess" { }
352
        "compile" { }
353
        "assemble" { }
354
        "link" { }
355
        "run" { }
356
        default {
357
            error "[lindex $args 0]: syntax error"
358
        }
359
    }
360
    set do-what [list [lindex $args 1] $selected $expected]
361
}
362
 
363
proc dg-error { args } {
364
    upvar dg-messages messages
365
 
366
    if { [llength $args] > 5 } {
367
        error "[lindex $args 0]: too many arguments"
368
        return
369
    }
370
 
371
    set xfail ""
372
    if { [llength $args] >= 4 } {
373
        switch [dg-process-target [lindex $args 3]] {
374
            "F" { set xfail "X" }
375
            "P" { set xfail "" }
376
            "N" {
377
                # If we get "N", this error doesn't apply to us so ignore it.
378
                return
379
            }
380
        }
381
    }
382
 
383
    if { [llength $args] >= 5 } {
384
        switch [lindex $args 4] {
385
            "." { set line [dg-format-linenum [lindex $args 0]] }
386
            "0" { set line "" }
387
            "default" { set line [dg-format-linenum [lindex $args 4]] }
388
        }
389
    } else {
390
        set line [dg-format-linenum [lindex $args 0]]
391
    }
392
 
393
    lappend messages [list $line "${xfail}ERROR" [lindex $args 1] [lindex $args 2]]
394
}
395
 
396
proc dg-warning { args } {
397
    upvar dg-messages messages
398
 
399
    if { [llength $args] > 5 } {
400
        error "[lindex $args 0]: too many arguments"
401
        return
402
    }
403
 
404
    set xfail ""
405
    if { [llength $args] >= 4 } {
406
        switch [dg-process-target [lindex $args 3]] {
407
            "F" { set xfail "X" }
408
            "P" { set xfail "" }
409
            "N" {
410
                # If we get "N", this warning doesn't apply to us so ignore it.
411
                return
412
            }
413
        }
414
    }
415
 
416
    if { [llength $args] >= 5 } {
417
        switch [lindex $args 4] {
418
            "." { set line [dg-format-linenum [lindex $args 0]] }
419
            "0" { set line "" }
420
            "default" { set line [dg-format-linenum [lindex $args 4]] }
421
        }
422
    } else {
423
        set line [dg-format-linenum [lindex $args 0]]
424
    }
425
 
426
    lappend messages [list $line "${xfail}WARNING" [lindex $args 1] [lindex $args 2]]
427
}
428
 
429
proc dg-bogus { args } {
430
    upvar dg-messages messages
431
 
432
    if { [llength $args] > 5 } {
433
        error "[lindex $args 0]: too many arguments"
434
        return
435
    }
436
 
437
    set xfail ""
438
    if { [llength $args] >= 4 } {
439
        switch [dg-process-target [lindex $args 3]] {
440
            "F" { set xfail "X" }
441
            "P" { set xfail "" }
442
            "N" {
443
                # If we get "N", this message doesn't apply to us so ignore it.
444
                return
445
            }
446
        }
447
    }
448
 
449
    if { [llength $args] >= 5 } {
450
        switch [lindex $args 4] {
451
            "." { set line [dg-format-linenum [lindex $args 0]] }
452
            "0" { set line "" }
453
            "default" { set line [dg-format-linenum [lindex $args 4]] }
454
        }
455
    } else {
456
        set line [dg-format-linenum [lindex $args 0]]
457
    }
458
 
459
    lappend messages [list $line "${xfail}BOGUS" [lindex $args 1] [lindex $args 2]]
460
}
461
 
462
proc dg-build { args } {
463
    upvar dg-messages messages
464
 
465
    if { [llength $args] > 4 } {
466
        error "[lindex $args 0]: too many arguments"
467
        return
468
    }
469
 
470
    set xfail ""
471
    if { [ llength $args] >= 4 } {
472
        switch [dg-process-target [lindex $args 3]] {
473
            "F" { set xfail "X" }
474
            "P" { set xfail "" }
475
            "N" {
476
                # If we get "N", this lossage doesn't apply to us so ignore it.
477
                return
478
            }
479
        }
480
    }
481
 
482
    lappend messages [list [lindex $args 0] "${xfail}BUILD" [lindex $args 1] [lindex $args 2]]
483
}
484
 
485
proc dg-excess-errors { args } {
486
    upvar dg-excess-errors-flag excess-errors-flag
487
 
488
    if { [llength $args] > 3 } {
489
        error "[lindex $args 0]: too many arguments"
490
        return
491
    }
492
 
493
    if { [llength $args] >= 3 } {
494
        switch [dg-process-target [lindex $args 2]] {
495
            "F" { set excess-errors-flag 1 }
496
            "S" { set excess-errors-flag 1 }
497
        }
498
    } else {
499
        set excess-errors-flag 1
500
    }
501
}
502
 
503
#
504
# Indicate expected program output
505
#
506
# We support multiple occurrences, but we do not implicitly insert newlines
507
# between them.
508
#
509
# Note that target boards don't all support this kind of thing so it's a good
510
# idea to specify the target all the time.  If one or more targets are
511
# explicitly selected, the test won't be performed if we're not one of them
512
# (as long as we were never mentioned).
513
#
514
# If you have target dependent output and want to set an xfail for one or more
515
# of them, use { dg-output "" { xfail a-b-c ... } }.  The "" won't contribute
516
# to the expected output.
517
#
518
proc dg-output { args } {
519
    upvar dg-output-text output-text
520
 
521
    if { [llength $args] > 3 } {
522
        error "[lindex $args 0]: too many arguments"
523
        return
524
    }
525
 
526
    # Allow target dependent output.
527
 
528
    set expected [lindex ${output-text} 0]
529
    if { [llength $args] >= 3 } {
530
        switch [dg-process-target [lindex $args 2]] {
531
            "N" { return }
532
            "S" { }
533
            "F" { set expected "F" }
534
            # Don't override a previous xfail.
535
            "P" { }
536
        }
537
    }
538
 
539
    if { [llength ${output-text}] == 1 } {
540
        # First occurrence.
541
        set output-text [list $expected [lindex $args 1]]
542
    } else {
543
        set output-text [list $expected "[lindex ${output-text} 1][lindex $args 1]"]
544
    }
545
}
546
 
547
proc dg-final { args } {
548
    upvar dg-final-code final-code
549
 
550
    if { [llength $args] > 2 } {
551
        error "[lindex $args 0]: too many arguments"
552
        return
553
    }
554
 
555
    #send_user "dg-final: $args\n"
556
    append final-code "[lindex $args 1]\n"
557
}
558
 
559
#
560
# Set up our environment
561
#
562
# There currently isn't much to do, but always calling it allows us to add
563
# enhancements without having to update our callers.
564
# It must be run before calling `dg-test'.
565
 
566
proc dg-init { } {
567
}
568
 
569
# dg-runtest -- simple main loop useful to most testsuites
570
#
571
# FLAGS is a set of options to always pass.
572
# DEFAULT_EXTRA_FLAGS is a set of options to pass if the testcase doesn't
573
# specify any (with dg-option).
574
# ??? We're flipping between "flag" and "option" here.
575
 
576
proc dg-runtest { testcases flags default-extra-flags } {
577
    global runtests
578
 
579
    foreach testcase $testcases {
580
        # If we're only testing specific files and this isn't one of them, skip it.
581
        if ![runtest_file_p $runtests $testcase] {
582
            continue
583
        }
584
        verbose "Testing [file tail [file dirname $testcase]]/[file tail $testcase]"
585
        dg-test $testcase $flags ${default-extra-flags}
586
    }
587
}
588
 
589
# dg-trim-dirname -- rip DIR_NAME out of FILE_NAME
590
#
591
# Syntax: dg-trim-dirname dir_name file_name
592
# We need to go through this contorsion in order to properly support
593
# directory-names which might have embedded regexp special characters.
594
 
595
proc dg-trim-dirname { dir_name file_name } {
596
    set special_character "\[\?\+\-\.\(\)\$\|\]"
597
    regsub -all $special_character $dir_name "\\\\&" dir_name
598
    regsub "^$dir_name/?" $file_name "" file_name
599
    return $file_name
600
}
601
 
602
# dg-test -- runs a new style DejaGnu test
603
#
604
# Syntax: dg-test [-keep-output] prog tool_flags default_extra_tool_flags
605
#
606
# PROG is the full path name of the file to pass to the tool (eg: compiler).
607
# TOOL_FLAGS is a set of options to always pass.
608
# DEFAULT_EXTRA_TOOL_FLAGS are additional options if the testcase has none.
609
 
610
#proc dg-test { prog tool_flags default_extra_tool_flags } {
611
proc dg-test { args } {
612
    global dg-do-what-default dg-interpreter-batch-mode dg-linenum-format
613
    global errorCode errorInfo
614
    global tool
615
    global srcdir               ;# eg: /calvin/dje/devo/gcc/./testsuite/
616
    global host_triplet target_triplet
617
 
618
    set keep 0
619
    set i 0
620
 
621
    if { [string index [lindex $args 0] 0] == "-" } {
622
        for { set i 0 } { $i < [llength $args] } { incr i } {
623
            if { [lindex $args $i] == "--" } {
624
                incr i
625
                break
626
            } elseif { [lindex $args $i] == "-keep-output" } {
627
                set keep 1
628
            } elseif { [string index [lindex $args $i] 0] == "-" } {
629
                clone_output "ERROR: dg-test: illegal argument: [lindex $args $i]"
630
                return
631
            } else {
632
                break
633
            }
634
        }
635
    }
636
 
637
    if { $i + 3 != [llength $args] } {
638
        clone_output "ERROR: dg-test: missing arguments in call"
639
        return
640
    }
641
    set prog [lindex $args $i]
642
    set tool_flags [lindex $args [expr $i + 1]]
643
    set default_extra_tool_flags [lindex $args [expr $i + 2]]
644
 
645
    set text "\[- A-Za-z0-9\.\;\"\_\:\'\`\(\)\!\#\=\+\?\&\*]*"
646
 
647
    set name [dg-trim-dirname $srcdir $prog]
648
    # If we couldn't rip $srcdir out of `prog' then just do the best we can.
649
    # The point is to reduce the unnecessary noise in the logs.  Don't strip
650
    # out too much because different testcases with the same name can confuse
651
    # `test-tool'.
652
    if [string match "/*" $name] {
653
        set name "[file tail [file dirname $prog]]/[file tail $prog]"
654
    }
655
 
656
    # Process any embedded dg options in the testcase.
657
 
658
    # Use "" for the second element of dg-do-what so we can tell if it's been
659
    # explicitly set to "S".
660
    set dg-do-what [list ${dg-do-what-default} "" P]
661
    set dg-excess-errors-flag 0
662
    set dg-messages ""
663
    set dg-extra-tool-flags $default_extra_tool_flags
664
    set dg-final-code ""
665
 
666
    # `dg-output-text' is a list of two elements: pass/fail and text.
667
    # Leave second element off for now (indicates "don't perform test")
668
    set dg-output-text "P"
669
 
670
    # Define our own "special function" `unknown' so we catch spelling errors.
671
    # But first rename the existing one so we can restore it afterwards.
672
    catch {rename dg-save-unknown ""}
673
    rename unknown dg-save-unknown
674
    proc unknown { args } {
675
        return -code error "unknown dg option: $args"
676
    }
677
 
678
    set tmp [dg-get-options $prog]
679
    foreach op $tmp {
680
        verbose "Processing option: $op" 3
681
        set status [catch "$op" errmsg]
682
        if { $status != 0 } {
683
            if { 0 && [info exists errorInfo] } {
684
                # This also prints a backtrace which will just confuse
685
                # testcase writers, so it's disabled.
686
                perror "$name: $errorInfo\n"
687
            } else {
688
                perror "$name: $errmsg for \"$op\"\n"
689
            }
690
            # ??? The call to unresolved here is necessary to clear `errcnt'.
691
            # What we really need is a proc like perror that doesn't set errcnt.
692
            # It should also set exit_status to 1.
693
            unresolved "$name: $errmsg for \"$op\""
694
            return
695
        }
696
    }
697
 
698
    # Restore normal error handling.
699
    rename unknown ""
700
    rename dg-save-unknown unknown
701
 
702
    # If we're not supposed to try this test on this target, we're done.
703
    if { [lindex ${dg-do-what} 1] == "N" } {
704
        unsupported "$name"
705
        verbose "$name not supported on this target, skipping it" 3
706
        return
707
    }
708
 
709
    # Run the tool and analyze the results.
710
    # The result of ${tool}-dg-test is in a bit of flux.
711
    # Currently it is the name of the output file (or "" if none).
712
    # If we need more than this it will grow into a list of things.
713
    # No intention is made (at this point) to preserve upward compatibility
714
    # (though at some point we'll have to).
715
 
716
    set results [${tool}-dg-test $prog [lindex ${dg-do-what} 0] "$tool_flags ${dg-extra-tool-flags}"];
717
 
718
    set comp_output [lindex $results 0];
719
    set output_file [lindex $results 1];
720
 
721
    #send_user "\nold_dejagnu.exp: comp_output1 = :$comp_output:\n\n"
722
    #send_user "\nold_dejagnu.exp: message = :$message:\n\n"
723
    #send_user "\nold_dejagnu.exp: message length = [llength $message]\n\n"
724
 
725
    foreach i ${dg-messages} {
726
        verbose "Scanning for message: $i" 4
727
 
728
        # Remove all error messages for the line [lindex $i 0]
729
        # in the source file.  If we find any, success!
730
        set line [lindex $i 0]
731
        set pattern [lindex $i 2]
732
        set comment [lindex $i 3]
733
        #send_user "Before:\n$comp_output\n"
734
        if [regsub -all "(^|\n)(\[^\n\]+$line\[^\n\]*($pattern)\[^\n\]*\n?)+" $comp_output "\n" comp_output] {
735
            set comp_output [string trimleft $comp_output]
736
            set ok pass
737
            set uhoh fail
738
        } else {
739
            set ok fail
740
            set uhoh pass
741
        }
742
        #send_user "After:\n$comp_output\n"
743
 
744
        # $line will either be a formatted line number or a number all by
745
        # itself.  Delete the formatting.
746
        scan $line ${dg-linenum-format} line
747
        switch [lindex $i 1] {
748
            "ERROR" {
749
                $ok "$name $comment (test for errors, line $line)"
750
            }
751
            "XERROR" {
752
                x$ok "$name $comment (test for errors, line $line)"
753
            }
754
            "WARNING" {
755
                $ok "$name $comment (test for warnings, line $line)"
756
            }
757
            "XWARNING" {
758
                x$ok "$name $comment (test for warnings, line $line)"
759
            }
760
            "BOGUS" {
761
                $uhoh "$name $comment (test for bogus messages, line $line)"
762
            }
763
            "XBOGUS" {
764
                x$uhoh "$name $comment (test for bogus messages, line $line)"
765
            }
766
            "BUILD" {
767
                $uhoh "$name $comment (test for build failure, line $line)"
768
            }
769
            "XBUILD" {
770
                x$uhoh "$name $comment (test for build failure, line $line)"
771
            }
772
            "EXEC" { }
773
            "XEXEC" { }
774
        }
775
        #send_user "\nold_dejagnu.exp: comp_output2= :$comp_output:\n\n"
776
    }
777
    #send_user "\nold_dejagnu.exp: comp_output3 = :$comp_output:\n\n"
778
 
779
    # Remove messages from the tool that we can ignore.
780
    #send_user "comp_output: $comp_output\n"
781
    set comp_output [prune_warnings $comp_output]
782
 
783
    if { [info proc ${tool}-dg-prune] != "" } {
784
        set comp_output [${tool}-dg-prune $target_triplet $comp_output]
785
        switch -glob $comp_output {
786
            "::untested::*" {
787
                regsub "::untested::" $comp_output "" message
788
                untested "$name: $message"
789
                return
790
            }
791
            "::unresolved::*" {
792
                regsub "::unresolved::" $comp_output "" message
793
                unresolved "$name: $message"
794
                return
795
            }
796
            "::unsupported::*" {
797
                regsub "::unsupported::" $comp_output "" message
798
                unsupported "$name: $message"
799
                return
800
            }
801
        }
802
    }
803
 
804
    # See if someone forgot to delete the extra lines.
805
    regsub -all "\n+" $comp_output "\n" comp_output
806
    regsub "^\n+" $comp_output "" comp_output
807
    #send_user "comp_output: $comp_output\n"
808
 
809
    # Don't do this if we're testing an interpreter.
810
    # FIXME: why?
811
    if { ${dg-interpreter-batch-mode} == 0 } {
812
        # Catch excess errors (new bugs or incomplete testcases).
813
        if ${dg-excess-errors-flag} {
814
            setup_xfail "*-*-*"
815
        }
816
        if ![string match "" $comp_output] {
817
            fail "$name (test for excess errors)"
818
            send_log "Excess errors:\n$comp_output\n"
819
        } else {
820
            pass "$name (test for excess errors)"
821
        }
822
    }
823
 
824
    # Run the executable image if asked to do so.
825
    # FIXME: This is the only place where we assume a standard meaning to
826
    # the `keyword' argument of dg-do.  This could be cleaned up.
827
    if { [lindex ${dg-do-what} 0] == "run" } {
828
        if ![file exists $output_file] {
829
            warning "$name compilation failed to produce executable"
830
        } else {
831
            set status -1
832
            set result [${tool}_load $output_file]
833
            set status [lindex $result 0];
834
            set output [lindex $result 1];
835
            #send_user "After exec, status: $status\n"
836
            if { [lindex ${dg-do-what} 2] == "F" } {
837
                setup_xfail "*-*-*"
838
            }
839
            if { "$status" == "pass" } {
840
                pass "$name execution test"
841
                verbose "Exec succeeded." 3
842
                if { [llength ${dg-output-text}] > 1 } {
843
                    #send_user "${dg-output-text}\n"
844
                    if { [lindex ${dg-output-text} 0] == "F" } {
845
                        setup_xfail "*-*-*"
846
                    }
847
                    set texttmp [lindex ${dg-output-text} 1]
848
                    if { ![regexp $texttmp ${output}] } {
849
                        fail "$name output pattern test, is ${output}, should match $texttmp"
850
                        verbose "Failed test for output pattern $texttmp" 3
851
                    } else {
852
                        pass "$name output pattern test, $texttmp"
853
                        verbose "Passed test for output pattern $texttmp" 3
854
                    }
855
                    unset texttmp
856
                }
857
            } elseif { "$status" == "fail" } {
858
                # It would be nice to get some info out of errorCode.
859
                if [info exists errorCode] {
860
                    verbose "Exec failed, errorCode: $errorCode" 3
861
                } else {
862
                    verbose "Exec failed, errorCode not defined!" 3
863
                }
864
                fail "$name execution test"
865
            } else {
866
                $status "$name execution test"
867
            }
868
        }
869
    }
870
 
871
    # Are there any further tests to perform?
872
    # Note that if the program has special run-time requirements, running
873
    # of the program can be delayed until here.  Ditto for other situations.
874
    # It would be a bit cumbersome though.
875
 
876
    if ![string match ${dg-final-code} ""] {
877
        regsub -all "\\\\(\[{}\])" ${dg-final-code} "\\1" dg-final-code
878
        # Note that the use of `args' here makes this a varargs proc.
879
        proc dg-final-proc { args } ${dg-final-code}
880
        verbose "Running dg-final tests." 3
881
        verbose "dg-final-proc:\n[info body dg-final-proc]" 4
882
        if [catch "dg-final-proc $prog" errmsg] {
883
            perror "$name: error executing dg-final: $errmsg"
884
            # ??? The call to unresolved here is necessary to clear `errcnt'.
885
            # What we really need is a proc like perror that doesn't set errcnt.
886
            # It should also set exit_status to 1.
887
            unresolved "$name: error executing dg-final: $errmsg"
888
        }
889
    }
890
 
891
    # Do some final clean up.
892
    # When testing an interpreter, we don't compile something and leave an
893
    # output file.
894
    if { ! ${keep} && ${dg-interpreter-batch-mode} == 0 } {
895
        catch "exec rm -f $output_file"
896
    }
897
}
898
 
899
#
900
# Do any necessary cleanups
901
#
902
# This is called at the end to undo anything dg-init did (that needs undoing).
903
#
904
proc dg-finish { } {
905
    # Reset this in case caller wonders whether s/he should.
906
    global prms_id
907
    set prms_id 0
908
 
909
    # The framework doesn't like to see any error remnants, so remove them.
910
    global errorInfo
911
    if [info exists errorInfo] {
912
        unset errorInfo
913
    }
914
 
915
    # If the tool has a "finish" routine, call it.
916
    # There may be a bit of duplication (eg: resetting prms_id), leave it.
917
    # Let's keep these procs robust.
918
    global tool
919
    if ![string match "" [info procs ${tool}_finish]] {
920
        ${tool}_finish
921
    }
922
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.