Fix the assert-msg test
authorMatthias Clasen <mclasen@redhat.com>
Mon, 14 Jan 2013 22:21:52 +0000 (17:21 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 14 Jan 2013 22:35:47 +0000 (17:35 -0500)
gdb is playing games with us, by breaking -x /dev/stdin

tests/assert-msg-test.gdb [new file with mode: 0644]
tests/run-assert-msg-test.sh

diff --git a/tests/assert-msg-test.gdb b/tests/assert-msg-test.gdb
new file mode 100644 (file)
index 0000000..a22981a
--- /dev/null
@@ -0,0 +1,3 @@
+run
+set print elements 0
+print (char*) __glib_assert_msg
index 338a14f..5f73d01 100755 (executable)
@@ -38,10 +38,11 @@ if ! type gdb >/dev/null 2>&1; then
 fi
 
 echo_v "Running gdb on assert-msg-test"
-OUT=$((echo run; echo "set print elements 0"; echo "print (char*) __glib_assert_msg") | $LIBTOOL --mode=execute gdb --batch -x /dev/stdin assert-msg-test 2> $error_out) || fail "failed to run gdb"
+OUT=$($LIBTOOL --mode=execute gdb --batch -x assert-msg-test.gdb assert-msg-test 2> $error_out) || fail "failed to run gdb"
 
 echo_v "Checking if assert message is in __glib_assert_msg"
 if ! echo "$OUT" | grep -q '^$1.*"ERROR:.*assert-msg-test.c:.*:.*main.*: assertion failed: (42 < 0)"'; then
+  echo "got: $OUT"
   fail "__glib_assert_msg does not have assertion message"
 fi