Fix Mac test failure
author <shinichiro.hamaji@gmail.com> <>
Fri, 1 Feb 2013 05:46:37 +0000 (05:46 +0000)
committer <shinichiro.hamaji@gmail.com> <>
Fri, 1 Feb 2013 05:46:37 +0000 (05:46 +0000)
We need only the first line from signalhandler.out3

git-svn-id: https://google-glog.googlecode.com/svn/trunk@131 eb4d4688-79bd-11dd-afb4-1d65580434c0

src/signalhandler_unittest.sh

index 3b57b05..265cd45 100755 (executable)
@@ -111,7 +111,7 @@ done
 
 # Test for a case the program dies in a non-main thread.
 $BINARY die_in_thread 2> signalhandler.out3
-EXPECTED_TID="`sed 's/ .*//' signalhandler.out3`"
+EXPECTED_TID="`sed 's/ .*//; q' signalhandler.out3`"
 
 for pattern in SIGFPE DieInThread "TID $EXPECTED_TID" "Aborted at [0-9]"; do
   if ! grep --quiet "$pattern" signalhandler.out3; then