]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/aarch64/advsimd-intrinsics/advsimd-intrinsics.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / aarch64 / advsimd-intrinsics / advsimd-intrinsics.exp
1 # Copyright (C) 2014-2015 Free Software Foundation, Inc.
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
17 # GCC testsuite that uses the `dg.exp' driver.
18
19 # Exit immediately if this isn't an ARM or AArch64 target.
20 if {![istarget arm*-*-*]
21 && ![istarget aarch64*-*-*]} then {
22 return
23 }
24
25 # Load support procs.
26 load_lib gcc-dg.exp
27
28 # Initialize `dg'.
29 load_lib c-torture.exp
30 load_lib target-supports.exp
31 load_lib torture-options.exp
32
33 dg-init
34
35 if {[istarget arm*-*-*]
36 && ![check_effective_target_arm_neon_ok]} then {
37 return
38 }
39
40 torture-init
41 set-torture-options $C_TORTURE_OPTIONS {{}} $LTO_TORTURE_OPTIONS
42
43 # Make sure Neon flags are provided, if necessary.
44 set additional_flags [add_options_for_arm_neon ""]
45
46 # Main loop.
47 foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.c]] {
48 # If we're only testing specific files and this isn't one of them, skip it.
49 if ![runtest_file_p $runtests $src] then {
50 continue
51 }
52
53 # runtest_file_p is already run above, and the code below can run
54 # runtest_file_p again, make sure everything for this test is
55 # performed if the above runtest_file_p decided this runtest
56 # instance should execute the test
57 gcc_parallel_test_enable 0
58 c-torture-execute $src $additional_flags
59 gcc-dg-runtest $src "" $additional_flags
60 gcc_parallel_test_enable 1
61 }
62
63 # All done.
64 torture-finish
65 dg-finish