This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from e2f980b [hsa] Consodlidate GTY roots for trees used during expansion to HSA new 53c248d8 [hsa testsuite] Gridification tests new cc37120 [hsa testsuite] Suppress hsa warnings in compiler gomp tests new c9b762a [hsa testsuite] Suppress hsa warnings in libgomp tests new a9dac35 [hsa testsuite] Adjust libgomp tests that do not work on host [...] new 95cc6fc [hsa testsuite] New directory for HSA-specific C testcases
The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/testsuite/ChangeLog | 24 ++++ gcc/testsuite/c-c++-common/gomp/clauses-1.c | 1 - gcc/testsuite/c-c++-common/gomp/gridify-1.c | 54 +++++++ gcc/testsuite/c-c++-common/gomp/if-1.c | 1 - gcc/testsuite/c-c++-common/gomp/pr61486-2.c | 1 - gcc/testsuite/c-c++-common/gomp/target-teams-1.c | 2 +- gcc/testsuite/g++.dg/gomp/gomp.exp | 2 +- gcc/testsuite/g++.dg/gomp/target-teams-1.C | 2 +- gcc/testsuite/gcc.dg/gomp/gomp.exp | 2 +- gcc/testsuite/gcc.dg/gomp/pr68128-2.c | 2 +- gcc/testsuite/gfortran.dg/gomp/gomp.exp | 2 +- gcc/testsuite/gfortran.dg/gomp/gridify-1.f90 | 16 +++ gcc/testsuite/gfortran.dg/gomp/target1.f90 | 1 - gcc/testsuite/gfortran.dg/gomp/target2.f90 | 2 +- gcc/testsuite/gfortran.dg/gomp/target3.f90 | 1 - gcc/testsuite/lib/target-supports.exp | 8 ++ libgomp/ChangeLog | 42 ++++++ libgomp/testsuite/lib/libgomp.exp | 56 ++++++++ .../libgomp.c/examples-4/async_target-2.c | 2 +- libgomp/testsuite/libgomp.c/examples-4/device-1.c | 2 +- libgomp/testsuite/libgomp.c/examples-4/target-5.c | 2 +- .../testsuite/libgomp.c/examples-4/target_data-6.c | 2 +- .../testsuite/libgomp.c/examples-4/target_data-7.c | 2 +- .../libgomp.fortran/examples-4/async_target-2.f90 | 2 +- .../libgomp.fortran/examples-4/device-1.f90 | 2 +- .../libgomp.fortran/examples-4/target-5.f90 | 2 +- .../libgomp.fortran/examples-4/target_data-6.f90 | 2 +- .../libgomp.fortran/examples-4/target_data-7.f90 | 2 +- libgomp/testsuite/libgomp.hsa.c/alloca-1.c | 25 ++++ libgomp/testsuite/libgomp.hsa.c/bitfield-1.c | 160 +++++++++++++++++++++ libgomp/testsuite/libgomp.hsa.c/builtins-1.c | 97 +++++++++++++ .../testsuite/{libgomp.c => libgomp.hsa.c}/c.exp | 25 ++-- libgomp/testsuite/libgomp.hsa.c/complex-1.c | 65 +++++++++ .../testsuite/libgomp.hsa.c/formal-actual-args-1.c | 83 +++++++++++ libgomp/testsuite/libgomp.hsa.c/function-call-1.c | 50 +++++++ libgomp/testsuite/libgomp.hsa.c/get-level-1.c | 26 ++++ libgomp/testsuite/libgomp.hsa.c/gridify-1.c | 26 ++++ libgomp/testsuite/libgomp.hsa.c/gridify-2.c | 26 ++++ libgomp/testsuite/libgomp.hsa.c/gridify-3.c | 39 +++++ libgomp/testsuite/libgomp.hsa.c/gridify-4.c | 45 ++++++ .../testsuite/libgomp.hsa.c/memory-operations-1.c | 92 ++++++++++++ libgomp/testsuite/libgomp.hsa.c/pr69568.c | 41 ++++++ libgomp/testsuite/libgomp.hsa.c/rotate-1.c | 39 +++++ libgomp/testsuite/libgomp.hsa.c/switch-1.c | 145 +++++++++++++++++++ libgomp/testsuite/libgomp.hsa.c/switch-branch-1.c | 116 +++++++++++++++ 45 files changed, 1307 insertions(+), 32 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/gridify-1.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/gridify-1.f90 create mode 100644 libgomp/testsuite/libgomp.hsa.c/alloca-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/bitfield-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/builtins-1.c copy libgomp/testsuite/{libgomp.c => libgomp.hsa.c}/c.exp (58%) create mode 100644 libgomp/testsuite/libgomp.hsa.c/complex-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/formal-actual-args-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/function-call-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/get-level-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/gridify-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/gridify-2.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/gridify-3.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/gridify-4.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/memory-operations-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/pr69568.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/rotate-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/switch-1.c create mode 100644 libgomp/testsuite/libgomp.hsa.c/switch-branch-1.c