diff options
author | Kyrylo Tkachov <kyrylo.tkachov@arm.com> | 2014-12-12 10:31:44 +0000 |
---|---|---|
committer | Kyrylo Tkachov <ktkachov@gcc.gnu.org> | 2014-12-12 10:31:44 +0000 |
commit | 3b41b58357054c9f236e265f68a4d852b57fa62d (patch) | |
tree | 41bb207c2e5755cc32b9312dc5ea21bf0c9b5f70 | |
parent | c71c975fe658c10794f30b4b5847b0afdceab530 (diff) | |
download | gcc-3b41b58357054c9f236e265f68a4d852b57fa62d.zip gcc-3b41b58357054c9f236e265f68a4d852b57fa62d.tar.gz gcc-3b41b58357054c9f236e265f68a4d852b57fa62d.tar.bz2 |
[libgomp][testsuite] Explicitly include target-utils.exp (fix libgomp testsuite ERROR)
* testsuite/lib/libgomp.exp: Load target-utils.exp.
Move load of target-supportes.exp earlier.
From-SVN: r218662
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/testsuite/lib/libgomp.exp | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 8d8b8d8..4018bc9 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2014-12-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com> + + * testsuite/lib/libgomp.exp: Load target-utils.exp. + Move load of target-supportes.exp earlier. + 2014-12-10 Ilya Verbin <ilya.verbin@intel.com> * testsuite/libgomp.c/target-9.c: New test. diff --git a/libgomp/testsuite/lib/libgomp.exp b/libgomp/testsuite/lib/libgomp.exp index a154684..ff22f10 100644 --- a/libgomp/testsuite/lib/libgomp.exp +++ b/libgomp/testsuite/lib/libgomp.exp @@ -17,9 +17,10 @@ load_lib dg.exp load_gcc_lib prune.exp load_gcc_lib target-libpath.exp load_gcc_lib wrapper.exp +load_gcc_lib target-supports.exp +load_gcc_lib target-utils.exp load_gcc_lib gcc-defs.exp load_gcc_lib timeout.exp -load_gcc_lib target-supports.exp load_gcc_lib file-format.exp load_gcc_lib target-supports-dg.exp load_gcc_lib scanasm.exp |