You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

155 lines
4.8 KiB

# Copyright (C) 2022 Free Software Foundation, Inc.
#
# This file is part of DejaGnu.
#
# DejaGnu is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# DejaGnu is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with DejaGnu; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
# This file is a test driver for the unit test protocol library.
# Note that the tests for the framework side of the unit testing support
# are in testsuite/runtest.main/stats.exp and its nested testsuite, and
# this code is a separate implementation for testing libdejagnu. In
# particular, while libdejagnu suport modules will always emit a "Totals:"
# line, that line is not actually part of the protocol.
# Each test program must accept test outcomes on the command line, and
# produce exactly those results in that order.
proc test_libdejagnu_unit { language tests } {
set test_program [testsuite file -object -test "unit-${language}"]
# map messages from dejagnu.h:totals() to result types
array set expected_totals_map {
passed pass failed fail
"unexpected passes" xpass
"expected failures" xfail
untested untested
unresolved unresolved
unsupported unsupported
}
foreach test $tests {
array set expected_totals {
pass 0 fail 0
xpass 0 xfail 0
untested 0 unresolved 0 unsupported 0
}
set test_idx 0
set result pass
verbose -log "Spawning $test_program $test ..."
eval [list spawn $test_program] $test
expect_after {
-re {^[^\n]*\n} { exp_continue }
full_buffer {
perror "Expect matching buffer overrun during test."
}
eof {
# No end marker? -> Fail!
verbose -log " unit test did not emit an end marker"
set result fail
}
timeout {
catch close
set result unresolved
}
}
# Check that the reported results match.
expect {
-re {^[\r\n]*Totals:[\r\n]+} {
# done with results, but fail if there should be more
if { [lindex $test $test_idx] ne "" } {
verbose -log " expected [lindex $test $test_idx]"
set result fail
}
}
-re {(?:\A|\n)\t([][[:upper:]]+):([^\n]+)\n} {
# above pattern copied from lib/dejagnu.exp:host_execute
switch -- [lindex $test $test_idx] {
note { set expected NOTE }
pass { set expected PASSED }
fail { set expected FAILED }
xpass { set expected XPASSED }
xfail { set expected XFAILED }
untested { set expected UNTESTED }
unresolved { set expected UNRESOLVED }
unsupported { set expected UNSUPPORTED }
warning { set expected WARNING }
error { set expected ERROR }
}
if { [info exists expected_totals([lindex $test $test_idx])]} {
incr expected_totals([lindex $test $test_idx])
}
if { $expected ne $expect_out(1,string) } {
set result fail
}
incr test_idx
exp_continue
}
}
# Now ensure that the reported totals are as expected.
expect {
-re {^\n*\t#([^:]+):\t+([[:digit:]]+)\r*\n} {
set type $expected_totals_map($expect_out(1,string))
set count $expect_out(2,string)
if { $expected_totals($type) != $count } {
verbose -log " expected $expected_totals($type)\
$type; got $count"
set result fail
}
unset expected_totals($type)
exp_continue
}
-re {^\n*\tEND:[^\n]+\n} {
# flush to EOF
expect -re {.+} { exp_continue } eof
}
}
catch close
wait -nowait
foreach { type count } [array get expected_totals] {
if { $count == 0 } { continue }
verbose -log " expected $count $type; got no report"
set result fail
}
$result "test $test_program with: $test"
}
}
foreach language {c cxx} {
test_libdejagnu_unit $language {
note pass fail xpass xfail untested unresolved unsupported
{error pass} {error fail} {error xpass} {error xfail}
{warning pass} {warning fail} {warning xpass} {warning xfail}
}
}
test_libdejagnu_unit ccxxmix {
{pass pass xpass xfail xfail xpass}
{fail fail xfail xpass xpass xfail}
{untested unresolved unsupported untested unresolved unsupported}
{error pass} {error fail} {error xpass} {error xfail}
{warning pass} {warning fail} {warning xpass} {warning xfail}
{note error pass} {note error fail}
{note error xpass} {note error xfail}
{note warning pass} {note warning fail}
{note warning xpass} {note warning xfail}
}