Add support for --start option in -exec-run GDB/MI command.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / gdb1090.exp
index 452aa4120ad3e86b1e06e9c7e37a0303d1022e8b..c4e5f59fdc5fcb4f0b835202483722046f92713d 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 2003, 2007, 2008, 2009 Free Software Foundation, Inc.
+# Copyright 2003-2013 Free Software Foundation, Inc.
 
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 
 # This file is part of the gdb testsuite.
 
-if $tracelevel then {
-        strace $tracelevel
-        }
-
 #
 # test running programs
 #
-set prms_id 0
-set bug_id 0
 
-set testfile "gdb1090"
-set srcfile ${testfile}.c
-set binfile ${objdir}/${subdir}/${testfile}
+standard_testfile
 
-if  { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
-     untested gdb1090.exp
-     return -1
+if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
+    untested $testfile.exp
+    return -1
 }
 
-gdb_exit
-gdb_start
-gdb_reinitialize_dir $srcdir/$subdir
-gdb_load ${binfile}
+if ![runto_main] then {
+    fail "Can't run to main"
+    return 1
+}
 
-if ![runto marker] then {
-    perror "couldn't run to breakpoint"
-    continue
-} 
-gdb_test "up" ".*foo.*" "up from marker"
+gdb_breakpoint [gdb_get_line_number "break-here"]
+gdb_continue_to_breakpoint "break-here" ".* break-here .*"
 
-send_gdb "print s24\n"
-gdb_expect {
+gdb_test_multiple "print s24" "print s24" {
     -re "\\\$\[0-9\]* = \\{field_0 = 1170, field_1 = 64701\\}\r\n$gdb_prompt $" {
        pass "print s24"
     }
@@ -58,10 +46,4 @@ gdb_expect {
        # gdb cannot find the second register and prints garbage.
        kfail "gdb/1090" "print s24"
     }
-    -re ".*$gdb_prompt $" {
-       fail "print s24"
-    }
-    timeout {
-       fail "print s24 (timeout)"
-    }
 }
This page took 0.025941 seconds and 4 git commands to generate.