Change == to -eq.
* testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
* testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
Change == to -eq.
* testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
* testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
+2011-03-21 Sriraman Tallam <tmsriram@google.com>
+
+ * testsuite/icf_safe_so_test.sh: Add #!/bin/sh to start.
+ Change == to -eq.
+ * testsuite/icf_string_merge_test.sh: Add #!/bin/sh to start.
+ * testsuite/icf_safe_test.sh: Add #!/bin/sh to start.
+ Change == to -eq.
+ * testsuite/icf_sht_rel_addend_test.sh: Add #!/bin/sh to start.
+ * testsuite/icf_preemptible_functions_test.sh: Add #!/bin/sh to start.
+
2011-03-14 Ian Lance Taylor <iant@google.com>
* script-sections.cc (Sort_output_sections::script_compare):
+#!/bin/sh
+
# icf_preemptible_functions_test.sh -- test --icf=all
# Copyright 2010 Free Software Foundation, Inc.
+#!/bin/sh
+
# icf_safe_so_test.sh -- test --icf=safe
# Copyright 2010 Free Software Foundation, Inc.
arch_specific_safe_fold()
{
- if [ $1 == 0 ];
+ if [ $1 -eq 0 ];
then
check_fold $2 $3 $4
else
+#!/bin/sh
+
# icf_safe_test.sh -- test --icf=safe
# Copyright 2009 Free Software Foundation, Inc.
arch_specific_safe_fold()
{
grep_x86=`grep -q -e "Advanced Micro Devices X86-64" -e "Intel 80386" -e "ARM" $2`
- if [ $? == 0 ];
+ if [ $? -eq 0 ];
then
check_fold $1 $3 $4
else
+#!/bin/sh
+
# icf_sht_rel_addend_test.sh -- test --icf=all
# Copyright 2010 Free Software Foundation, Inc.
+#!/bin/sh
+
# icf_string_merge_test.sh -- test --icf=all
# Copyright 2010 Free Software Foundation, Inc.