diff options
author | Tobias Burnus <burnus@gcc.gnu.org> | 2014-05-25 09:08:25 +0200 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2014-05-25 09:08:25 +0200 |
commit | 28d8a1607e4577c7e280c9f0406711ab46b6bc14 (patch) | |
tree | 17a3f21ba384225f7436f7b397a95bc2b196064a | |
parent | 07990a5e8e43ec758cbdfb2116b3d069b72f9543 (diff) | |
download | gcc-28d8a1607e4577c7e280c9f0406711ab46b6bc14.zip gcc-28d8a1607e4577c7e280c9f0406711ab46b6bc14.tar.gz gcc-28d8a1607e4577c7e280c9f0406711ab46b6bc14.tar.bz2 |
Missed the following files with commit 210909
2014-05-25 Tobias Burnus <burnus@net-b.de>
* gfortran.dg/coarray_this_image_1.f90: New.
* gfortran.dg/coarray_this_image_2.f90: New.
From-SVN: r210911
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray_this_image_1.f90 | 20 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray_this_image_2.f90 | 20 |
2 files changed, 40 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray_this_image_1.f90 b/gcc/testsuite/gfortran.dg/coarray_this_image_1.f90 new file mode 100644 index 0000000..bbdbab7 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/coarray_this_image_1.f90 @@ -0,0 +1,20 @@ +! { dg-do compile } +! { dg-options "-fdump-tree-original -fcoarray=single" } +! +j1 = this_image(distance=4) +j2 = this_image(5) +k1 = num_images() +k2 = num_images(6) +k3 = num_images(distance=7) +k4 = num_images(distance=8, failed=.true.) +k5 = num_images(failed=.false.) +end + +! { dg-final { scan-tree-dump-times "j1 = 1;" 1 "original" } } +! { dg-final { scan-tree-dump-times "j2 = 1;" 1 "original" } } +! { dg-final { scan-tree-dump-times "k1 = 1;" 1 "original" } } +! { dg-final { scan-tree-dump-times "k2 = 1;" 1 "original" } } +! { dg-final { scan-tree-dump-times "k3 = 1;" 1 "original" } } +! { dg-final { scan-tree-dump-times "k4 = 0;" 1 "original" } } +! { dg-final { scan-tree-dump-times "k5 = 1;" 1 "original" } } +! { dg-final { cleanup-tree-dump "original" } } diff --git a/gcc/testsuite/gfortran.dg/coarray_this_image_2.f90 b/gcc/testsuite/gfortran.dg/coarray_this_image_2.f90 new file mode 100644 index 0000000..35156ba --- /dev/null +++ b/gcc/testsuite/gfortran.dg/coarray_this_image_2.f90 @@ -0,0 +1,20 @@ +! { dg-do compile } +! { dg-options "-fdump-tree-original -fcoarray=lib" } +! +j1 = this_image(distance=4) +j2 = this_image(5) +k1 = num_images() +k2 = num_images(6) +k3 = num_images(distance=7) +k4 = num_images(distance=8, failed=.true.) +k5 = num_images(failed=.false.) +end + +! { dg-final { scan-tree-dump-times "j1 = _gfortran_caf_this_image \\(4\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "j2 = _gfortran_caf_this_image \\(5\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "k1 = _gfortran_caf_num_images \\(0, -1\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "k2 = _gfortran_caf_num_images \\(6, -1\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "k3 = _gfortran_caf_num_images \\(7, -1\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "k4 = _gfortran_caf_num_images \\(8, 1\\);" 1 "original" } } +! { dg-final { scan-tree-dump-times "k5 = _gfortran_caf_num_images \\(0, 0\\);" 1 "original" } } +! { dg-final { cleanup-tree-dump "original" } } |