]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/testsuite/libphobos.cycles/cycles.exp
Update copyright years.
[thirdparty/gcc.git] / libphobos / testsuite / libphobos.cycles / cycles.exp
CommitLineData
8d9254fc 1# Copyright (C) 2017-2020 Free Software Foundation, Inc.
b4c522fa
IB
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with GCC; see the file COPYING3. If not see
15# <http://www.gnu.org/licenses/>.
16
17load_lib libphobos-dg.exp
18
19set dg-output-text [list]
20
21# Arguments to pass to the test program, expected output, and return code.
22set cycle_test_list [list \
cc2cc3be 23 { ignore "" 0 } \
b4c522fa
IB
24 { abort "object.Error@.*: Cyclic dependency between module mod. and mod." 1 } \
25 { print "Cyclic dependency between module mod. and mod." 0 } \
26 { deprecate "Deprecation 16211 warning:" 0 } \
27]
28
29# Initialize dg.
30dg-init
31
32# Gather a list of all tests.
33set tests [lsort [find $srcdir/$subdir *.d]]
34
35# Main loop.
36foreach cycle_test $cycle_test_list {
37 # The set the argument to pass to the program.
38 set libphobos_run_args "--DRT-oncycle=[lindex $cycle_test 0]"
39
40 # Whether the program is expected to fail.
41 set expected_fail [lindex $cycle_test 2]
42
43 foreach test $tests {
0d6aae24 44 set libphobos_test_name "[dg-trim-dirname $srcdir $test] $libphobos_run_args"
cc2cc3be 45 set shouldfail $expected_fail
0d6aae24
IB
46 dg-runtest $test "" $DEFAULT_DFLAGS
47 set libphobos_test_name ""
b4c522fa
IB
48 }
49
50 set shouldfail 0
51 set libphobos_run_args ""
52}
53
54# All done.
55dg-finish