git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15291
347379 valgrind --leak-check=full memleak errors from system libraries on OS X 10.8
== 217236
347389 unhandled syscall: 373 (Linux ARM syncfs)
+347978 Remove bash dependencies where not needed
n-i-bz Provide implementations of certain compiler builtins to support
compilers who may not provide those
n-i-bz Old STABS code is still being compiled, but never used. Remove it.
-#!/bin/bash
+#!/bin/sh -x
# Do an automated test which involves building and regtesting version
# 1.6 of the GNU Scientific Library (gsl). This has proven to be a
(eval "$*") >> log.verbose 2>&1
- if [ $? == 0 ]
+ if [ $? = 0 ]
then
echo "done"
return 0
-#!/bin/bash
+#!/bin/sh
# Do an automated test which involves building and regtesting version
# 1.9 of the GNU Scientific Library (gsl). This has proven to be a
(eval "$*") >> log.verbose 2>&1
- if [ $? == 0 ]
+ if [ $? = 0 ]
then
echo "done"
return 0
-#!/bin/bash
+#!/bin/sh
downloads="$HOME/software/downloads"