mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 06:14:49 +01:00
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
# Copyright (C) 2021-2023 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]
|
|
|
|
# Test, arguments to pass to the test program, and return code.
|
|
set config_test_list [list \
|
|
{ test19433 "--DRT-dont-eat-me" 0 } \
|
|
{ test20459 "foo bar -- --DRT-gcopts=profile:1" 0 } \
|
|
{ test22523 "-- --DRT-testmode=run-main" 0 } \
|
|
]
|
|
|
|
# Initialize dg.
|
|
dg-init
|
|
|
|
# Main loop.
|
|
foreach config_test $config_test_list {
|
|
set test "$srcdir/$subdir/[lindex $config_test 0].d"
|
|
|
|
set libphobos_run_args "[lindex $config_test 1]"
|
|
set shouldfail [lindex $config_test 2]
|
|
set libphobos_test_name "[dg-trim-dirname $srcdir $test] $libphobos_run_args"
|
|
|
|
dg-runtest $test "" $DEFAULT_DFLAGS
|
|
|
|
set libphobos_test_name ""
|
|
set shouldfail 0
|
|
set libphobos_run_args ""
|
|
}
|
|
|
|
# All done.
|
|
dg-finish
|