diff options
author | ktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-12 10:31:44 +0000 |
---|---|---|
committer | ktkachov <ktkachov@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-12 10:31:44 +0000 |
commit | a530bcf4c54d7b335d5af168b0409347446104b1 (patch) | |
tree | 41bb207c2e5755cc32b9312dc5ea21bf0c9b5f70 /libgomp | |
parent | 3936756722ff98467977259680fdb2e984e31bfc (diff) | |
download | gcc-a530bcf4c54d7b335d5af168b0409347446104b1.tar.gz |
[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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218662 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-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 8d8b8d8d6ec..4018bc960b5 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 a1546847323..ff22f106bc5 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 |