set filename_re "\[^\r\n\]+/${testfile} \\(deleted\\)"
}
-verbose -log "APB: warning: No executable has been specified, and target executable $filename_re could not be found\\. Try using the \"file\" command\\."
-
gdb_test "attach $testpid" \
[multi_line \
"Attaching to process $decimal" \
# First, look for the xmmreg probe, and if we find it, grab the
# argument string.
if {![regexp {\n\s+Provider: test\n\s+Name: xmmreg\n[^\n]+\n\s+Arguments: ([^\n]+)\n} $output ignore arguments]} {
- verbose -log "APB: Couldn't find probe at all"
+ verbose -log "Couldn't find probe at all"
return false
}
- verbose -log "APB: Matched on '$ignore'"
- verbose -log "APB: arguments: '$arguments'"
+ verbose -log "Matched on '$ignore'"
+ verbose -log " arguments: '$arguments'"
# Check the argument string mentions xmm0.
if {![regexp {@%?xmm0} $arguments]} {
- verbose -log "APB: Prove doesn't use xmm0 register"
+ verbose -log "Probe doesn't use xmm0 register"
return false
}
set result [string range $result 0 end-[string length $nls]]
}
- verbose -log "APB: result: '$result'"
-
return $result
}
upvar 1 $varname upvar_addr
set addr [string range $upvar_addr 2 end]
- verbose -log "APB: index: $index, addr: $addr"
-
set symtab ""
set saw_line false
gdb_test_multiple "maint info line-table" \
error "failed to extract expected results for ubound"
}
- verbose -log "APB: Run a test here"
- verbose -log "APB: Expected lbound '$expected_lbound'"
- verbose -log "APB: Expected ubound '$expected_ubound'"
-
# We want to take a look at the line in the previous frame that
# called the current function. I couldn't find a better way of
# doing this than 'up', which will print the line, then 'down'
return -1
}
- verbose -log "APB: SPEC: $spec"
-
set s [lindex $spec 0]
set local_options [lindex $spec 1]
}
}
- verbose -log "APB: OBJECTS = $objects"
-
set ret [$func $objects "${binfile}" executable $options]
if { $ret != "" } {
untested $testname