Austin Schuh | 906616c | 2019-01-21 20:25:11 -0800 | [diff] [blame^] | 1 | #! /bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2007, Google Inc. |
| 4 | # All rights reserved. |
| 5 | # |
| 6 | # Redistribution and use in source and binary forms, with or without |
| 7 | # modification, are permitted provided that the following conditions are |
| 8 | # met: |
| 9 | # |
| 10 | # * Redistributions of source code must retain the above copyright |
| 11 | # notice, this list of conditions and the following disclaimer. |
| 12 | # * Redistributions in binary form must reproduce the above |
| 13 | # copyright notice, this list of conditions and the following disclaimer |
| 14 | # in the documentation and/or other materials provided with the |
| 15 | # distribution. |
| 16 | # * Neither the name of Google Inc. nor the names of its |
| 17 | # contributors may be used to endorse or promote products derived from |
| 18 | # this software without specific prior written permission. |
| 19 | # |
| 20 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 21 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 22 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 23 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 24 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 25 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 26 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | # |
| 32 | # Author: Sergey Ioffe |
| 33 | |
| 34 | get_strings () { |
| 35 | if test -e ".libs/$1"; then |
| 36 | binary=".libs/$1" |
| 37 | elif test -e "$1.exe"; then |
| 38 | binary="$1.exe" |
| 39 | else |
| 40 | echo "We coundn't find $1 binary." |
| 41 | exit 1 |
| 42 | fi |
| 43 | |
| 44 | strings -n 10 $binary | sort | awk '/TESTMESSAGE/ {printf "%s ", $2}' |
| 45 | } |
| 46 | |
| 47 | # Die if "$1" != "$2", print $3 as death reason |
| 48 | check_eq () { |
| 49 | if [ "$1" != "$2" ]; then |
| 50 | echo "Check failed: '$1' == '$2' ${3:+ ($3)}" |
| 51 | exit 1 |
| 52 | fi |
| 53 | } |
| 54 | |
| 55 | die () { |
| 56 | echo $1 |
| 57 | exit 1 |
| 58 | } |
| 59 | |
| 60 | # Check that the string literals are appropriately stripped. This will |
| 61 | # not be the case in debug mode. |
| 62 | |
| 63 | mode=`GLOG_check_mode=1 ./logging_striptest0 2> /dev/null` |
| 64 | if [ "$mode" = "opt" ]; |
| 65 | then |
| 66 | echo "In OPT mode" |
| 67 | check_eq "`get_strings logging_striptest0`" "COND ERROR FATAL INFO USAGE WARNING " |
| 68 | check_eq "`get_strings logging_striptest2`" "COND ERROR FATAL USAGE " |
| 69 | check_eq "`get_strings logging_striptest10`" "" |
| 70 | else |
| 71 | echo "In DBG mode; not checking strings" |
| 72 | fi |
| 73 | |
| 74 | # Check that LOG(FATAL) aborts even for large STRIP_LOG |
| 75 | |
| 76 | ./logging_striptest2 2>/dev/null && die "Did not abort for STRIP_LOG=2" |
| 77 | ./logging_striptest10 2>/dev/null && die "Did not abort for STRIP_LOG=10" |
| 78 | |
| 79 | echo "PASS" |