1# Target test cases of Andes NDS32 cpu for GNU compiler 2# Copyright (C) 2012-2020 Free Software Foundation, Inc. 3# Contributed by Andes Technology Corporation. 4# 5# This file is part of GCC. 6# 7# GCC is free software; you can redistribute it and/or modify it 8# under the terms of the GNU General Public License as published 9# by the Free Software Foundation; either version 3, or (at your 10# option) any later version. 11# 12# GCC is distributed in the hope that it will be useful, but WITHOUT 13# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public 15# License for more details. 16# 17# You should have received a copy of the GNU General Public License 18# along with GCC; see the file COPYING3. If not see 19# <http://www.gnu.org/licenses/>. 20 21# GCC testsuite that uses the `dg.exp' driver. 22 23# Exit immediately if this isn't a nds32 target. 24if ![istarget nds32*-*-*] then { 25 return 26} 27 28# Load support procs. 29load_lib gcc-dg.exp 30 31# If a testcase doesn't have special options, use these. 32global DEFAULT_CFLAGS 33if ![info exists DEFAULT_CFLAGS] then { 34 set DEFAULT_CFLAGS " -ansi -pedantic-errors" 35} 36 37# Initialize `dg'. 38dg-init 39 40# Main loop. 41dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[cS\]]] \ 42 "" $DEFAULT_CFLAGS 43 44# All done. 45dg-finish 46