aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2014-11-26 20:36:36 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2014-11-26 20:36:36 +0100
commit31a30e6234e3c058ac6b6386b5eede5ee0ffb08d (patch)
treefe27cca9a8991a9593ac4d227847ba7ad0291018 /libgomp/testsuite/libgomp.fortran
parent0e75e41f86d2396e85de8166cf8ec834ab2719f2 (diff)
downloadgcc-31a30e6234e3c058ac6b6386b5eede5ee0ffb08d.zip
gcc-31a30e6234e3c058ac6b6386b5eede5ee0ffb08d.tar.gz
gcc-31a30e6234e3c058ac6b6386b5eede5ee0ffb08d.tar.bz2
e.53.4.c: Add -DITESTITERS=20 to dg-options unless expensive testing is on.
* testsuite/libgomp.c/examples-4/e.53.4.c: Add -DITESTITERS=20 to dg-options unless expensive testing is on. (TESTITERS): Define to N if not defined. (main): Use TESTITERS instead of N. * testsuite/libgomp.c/examples-4/e.55.1.c: Define CHUNKSZ from dg-additional-options depending on whether expensive testing is on. * testsuite/libgomp.fortran/examples-4/e.55.1.f90 (e_55_1_mod): Decrease N to 100000 and CHUNKSZ to 10000. From-SVN: r218095
Diffstat (limited to 'libgomp/testsuite/libgomp.fortran')
-rw-r--r--libgomp/testsuite/libgomp.fortran/examples-4/e.55.1.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/testsuite/libgomp.fortran/examples-4/e.55.1.f90 b/libgomp/testsuite/libgomp.fortran/examples-4/e.55.1.f90
index 0dd00b4..c3849de 100644
--- a/libgomp/testsuite/libgomp.fortran/examples-4/e.55.1.f90
+++ b/libgomp/testsuite/libgomp.fortran/examples-4/e.55.1.f90
@@ -1,7 +1,7 @@
! { dg-do run }
module e_55_1_mod
- integer, parameter :: N = 10000000, CHUNKSZ = 100000
+ integer, parameter :: N = 100000, CHUNKSZ = 10000
real :: Y(N), Z(N)
end module