gdb.trace: Remove unnecessary target check from ftrace.exp.
The check used hardcoded targets and wasn't doing anything useful anyway, since unsupported architectures blow up on link due to missing the IPA library before they ever get to that check. gdb/testsuite/ChangeLog: * gdb.trace/ftrace.exp: Remove unnecessary target check.
This commit is contained in:
parent
7337a6f229
commit
678b48b7cf
2 changed files with 69 additions and 68 deletions
|
@ -1,3 +1,7 @@
|
|||
2016-02-25 Marcin Kościelnicki <koriakin@0x04.net>
|
||||
|
||||
* gdb.trace/ftrace.exp: Remove unnecessary target check.
|
||||
|
||||
2016-02-25 Marcin Kościelnicki <koriakin@0x04.net>
|
||||
|
||||
* gdb.trace/entry-values.exp: Surround $call_insn with '\y',
|
||||
|
|
|
@ -84,8 +84,6 @@ proc test_fast_tracepoints {} {
|
|||
|
||||
gdb_test "print gdb_agent_gdb_trampoline_buffer_error" ".*" ""
|
||||
|
||||
if { [istarget "x86_64-*-*"] || [istarget "i\[34567\]86-*-*"] || [is_aarch64_target] } {
|
||||
|
||||
gdb_test "ftrace set_point" "Fast tracepoint .*" \
|
||||
"fast tracepoint at a long insn"
|
||||
|
||||
|
@ -176,7 +174,6 @@ proc test_fast_tracepoints {} {
|
|||
unsupported $test
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Test compiled-condition
|
||||
# CONDEXP is the condition expression to be compiled.
|
||||
|
|
Loading…
Reference in a new issue