Cause clang to emit the definition of a type used only by pointer
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.stabs / gdb11479.exp
index b7a3ca7bd80bbc8ef72516d16cabb477294ab776..a2782acf488129b1b2ecf3c33b8033daa06f56a0 100644 (file)
@@ -1,6 +1,6 @@
 # This testcase is part of GDB, the GNU debugger.
 
-# Copyright 2010 Free Software Foundation, Inc.
+# Copyright 2010-2014 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
 
 # Test GDB stabs problem with qualified parameter of forward types.
 
-if $tracelevel then {
-       strace $tracelevel
-}
-
-set prms_id 0
-set bug_id 0
 
 set testfile "gdb11479"
 
 proc do_test {version} {
+    if ![runto_main] {
+        fail "Can't run to main $version"
+        return -1
+    }
     gdb_test "rb test" "" "Set breakpoints $version"
-    gdb_test "run" "Breakpoint .* test2 .*" "Stop at first breakpoint $version"
+    gdb_test "continue" "Breakpoint .* test2 .*" "Stop at first breakpoint $version"
     # Check that the struct is read in correctly
     gdb_test "print *t" ".*\{x = 5, y = 25, b = 2.5\}.*" \
        "Inspect t in test2 $version"
     # Check that the enum type length has been set to a non-zero value
-    gdb_test "print sizeof (*e)" "= \[1-9\]*" "sizeof (e) in test2 $version"
+    gdb_test "print sizeof (*e)" "= \[1-9\]*" "sizeof (*e) in test2 $version"
     gdb_test "continue" "Breakpoint .* test .*" \
        "Stop at first breakpoint $version"
     gdb_test "print *t" ".*\{x = 5, y = 25, b = 2.5\}.*" \
        "Inspect t in test $version"
     # Check that the enum type length has been set to a non-zero value
-    gdb_test "print sizeof (*e)" "= \[1-9\]*" "sizeof (e) in test $version"
+    gdb_test "print sizeof (*e)" "= \[1-9\]*" "sizeof (*e) in test $version"
 }
 
 if { [prepare_for_testing $testfile.exp $testfile $testfile.c {debug additional_flags=-gstabs}] == 0 } {
This page took 0.024732 seconds and 4 git commands to generate.