blob: ba2fc6e32af866202869d67b9eb11edfb34495ae (
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
|
# Copyright (C) 2021 Free Software Foundation, Inc.
#
# This program 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.
#
# This program 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 GCC; see the file COPYING3. If not see
# <http://www.gnu.org/licenses/>.
load_lib libphobos-dg.exp
set dg-output-text [list]
# Arguments to pass to the compiler, expected output, and return code.
set unit_test_list [list \
{ "-fversion=PassNoPrintout" 0 } \
{ "-fversion=GoodTests" 0 } \
{ "-fversion=FailNoPrintout" 1 } \
{ "-fversion=FailedTests" 1 } \
{ "-fversion=NoTests" 0 } \
]
# Initialize dg.
dg-init
# Gather a list of all tests.
set tests [lsort [find $srcdir/$subdir *.d]]
# Main loop.
foreach unit_test $unit_test_list {
# The version flags to build the program with.
set test_flags [lindex $unit_test 0]
# Whether the program is expected to fail.
set expected_fail [lindex $unit_test 1]
foreach test $tests {
set shouldfail $expected_fail
dg-test $test "" $test_flags
}
set shouldfail 0
}
# All done.
dg-finish
|