diff options
author | Ken Werner <ken.werner@de.ibm.com> | 2011-01-21 14:05:51 +0000 |
---|---|---|
committer | Ken Werner <ken.werner@de.ibm.com> | 2011-01-21 14:05:51 +0000 |
commit | 6da78614a34009388ab8af71cd26f59a451d486a (patch) | |
tree | 90ba3bd8392ad6d6a5e1748bf5b3f233d075c997 /gdb | |
parent | 7837304f171553826fcfd7feb4efe63821b09769 (diff) | |
download | gdb-6da78614a34009388ab8af71cd26f59a451d486a.zip gdb-6da78614a34009388ab8af71cd26f59a451d486a.tar.gz gdb-6da78614a34009388ab8af71cd26f59a451d486a.tar.bz2 |
gdb/testsuite/ChangeLog
2011-01-21 Ken Werner <ken.werner@de.ibm.com>
* lib/opencl.exp (skip_opencl_tests): Add missing compile_flags
argument to the gdb_compile_opencl_hostapp call.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/lib/opencl.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index e579943..9edc9d6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-01-21 Ken Werner <ken.werner@de.ibm.com> + + * lib/opencl.exp (skip_opencl_tests): Add missing compile_flags + argument to the gdb_compile_opencl_hostapp call. + 2011-01-19 Yao Qi <yao@codesourcery.com> * lib/dwarf.exp (dwarf2_support): Change supported targets to a diff --git a/gdb/testsuite/lib/opencl.exp b/gdb/testsuite/lib/opencl.exp index b5e7c09..c1b5291 100644 --- a/gdb/testsuite/lib/opencl.exp +++ b/gdb/testsuite/lib/opencl.exp @@ -50,7 +50,7 @@ proc skip_opencl_tests {} { verbose "$me: compiling OpenCL test app" 2 set compile_flags {debug nowarnings quiet} - if { [gdb_compile_opencl_hostapp "${clprogram}" "${executable}" "" ] != "" } { + if { [gdb_compile_opencl_hostapp "${clprogram}" "${executable}" "${compile_flags}" ] != "" } { verbose "$me: compiling OpenCL binary failed, returning 1" 2 return [set skip_opencl_tests_saved($board) 1] } |