• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


コミットメタ情報

リビジョン0155cc767d61af1d5bd6745f00af79eabea6c72d (tree)
日時2006-07-24 23:20:50
作者Nathan Sidwell <nathan@code...>
コミッターNathan Sidwell

ログメッセージ

* gdb.base/auxv.exp: Skip on non-linux, non-solaris targets.
* gdb.base/cursal.exp: Use gdb_file_cmd first, then separate gdb_load.

変更サマリ

差分

--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
1+2006-07-24 Nathan Sidwell <nathan@codesourcery.com>
2+
3+ * gdb.base/auxv.exp: Skip on non-linux, non-solaris targets.
4+ * gdb.base/cursal.exp: Use gdb_file_cmd first, then separate gdb_load.
5+
16 2006-07-21 Andrew Stubbs <andrew.stubbs@st.com>
27
38 * gdb.base/default.exp: Update source command error message.
--- a/gdb/testsuite/gdb.base/auxv.exp
+++ b/gdb/testsuite/gdb.base/auxv.exp
@@ -23,6 +23,11 @@
2323 # This file is based on corefile.exp which was written by Fred
2424 # Fish. (fnf@cygnus.com)
2525
26+if { ! [istarget "*-*-linux*"] && ! [istarget "*-*-solaris*"] } {
27+ verbose "Skipping auxv.exp because of lack of support."
28+ return
29+}
30+
2631 if $tracelevel then {
2732 strace $tracelevel
2833 }
--- a/gdb/testsuite/gdb.base/cursal.exp
+++ b/gdb/testsuite/gdb.base/cursal.exp
@@ -34,8 +34,7 @@ if {[gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug
3434 gdb_exit
3535 gdb_start
3636 gdb_reinitialize_dir $srcdir/$subdir
37-gdb_load ${binfile}
38-
37+gdb_file_cmd ${binfile}
3938 gdb_test "set listsize 1" \
4039 ".*"
4140
@@ -43,7 +42,7 @@ gdb_test "set listsize 1" \
4342 gdb_test "list" \
4443 "v0 = 0;" \
4544 "list before run"
46-
45+gdb_load
4746 if {! [runto_main]} {
4847 return -1
4948 }