Skip to content
Snippets Groups Projects
Commit 3e7ce919 authored by Ger van Diepen's avatar Ger van Diepen
Browse files

bug 1159:

Added option -memcheck to execute a make memcheck
parent eac81b9b
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,8 @@ check=$1 ...@@ -52,6 +52,8 @@ check=$1
shift shift
checktool=$1 checktool=$1
shift shift
memcheck=$1
shift
install=$1 install=$1
shift shift
dist=$1 dist=$1
...@@ -124,6 +126,9 @@ if [ $buildmake = 1 ]; then ...@@ -124,6 +126,9 @@ if [ $buildmake = 1 ]; then
postmake="$postmake && make $kstr CHECKTOOL='$checktool' check" postmake="$postmake && make $kstr CHECKTOOL='$checktool' check"
fi fi
fi fi
if [ $memcheck = 1 ]; then
postmake="$postmake && make $kstr memcheck"
fi
if [ $install = 1 ]; then if [ $install = 1 ]; then
postmake="$postmake && make $kstr install" postmake="$postmake && make $kstr install"
fi fi
......
...@@ -45,7 +45,8 @@ distclean=0 ...@@ -45,7 +45,8 @@ distclean=0
bldtest=0 bldtest=0
check=0 check=0
checktool= checktool=
install=2 memcheck=0
install=1
dist=0 dist=0
distcheck=0 distcheck=0
rpm=0 rpm=0
...@@ -82,20 +83,10 @@ do ...@@ -82,20 +83,10 @@ do
;; ;;
esac esac
variants="$1" variants="$1"
if [ $install = 2 ]; then
install=1;
fi
shift shift
elif [ "$1" = -nobuild ]; then elif [ "$1" = -nobuild ]; then
shift shift
variants= variants=
conf=0
clean=0
bldtest=0
check=0
if [ $install = 1 ]; then
install=0
fi
elif [ "$1" = -make ]; then elif [ "$1" = -make ]; then
shift shift
buildmake=1 buildmake=1
...@@ -139,6 +130,12 @@ do ...@@ -139,6 +130,12 @@ do
elif [ "$1" = -nocheck ]; then elif [ "$1" = -nocheck ]; then
shift shift
check=0 check=0
elif [ "$1" = -memcheck ]; then
shift
memcheck=1
elif [ "$1" = -nomemcheck ]; then
shift
memcheck=0
elif [ "$1" = -checktool ]; then elif [ "$1" = -checktool ]; then
shift shift
checktool="$1" checktool="$1"
...@@ -215,8 +212,8 @@ if test $# -lt 1; then ...@@ -215,8 +212,8 @@ if test $# -lt 1; then
echo 'Run as:' echo 'Run as:'
echo ' rubbuild [-srcdir] [-build variant] [-skipbuilt] [-bg]' echo ' rubbuild [-srcdir] [-build variant] [-skipbuilt] [-bg]'
echo ' [-conf] [-confopt string] [-k] [-j<option>]' echo ' [-conf] [-confopt string] [-k] [-j<option>]'
echo ' [-[dist]clean] [-make] [-test] [-check] [-checktool tool] [-install]' echo ' [-[dist]clean] [-make] [-test] [-check] [-checktool tool] [-memcheck]'
echo ' [-dist] [-distcheck] [-rpm]' echo ' [-install] [-dist] [-distcheck] [-rpm]'
echo ' package1 ...' echo ' package1 ...'
exit 1 exit 1
fi fi
...@@ -286,8 +283,8 @@ fi ...@@ -286,8 +283,8 @@ fi
# dorubbuild writes the build output to a log file. # dorubbuild writes the build output to a log file.
if [ $bg = 1 ]; then if [ $bg = 1 ]; then
echo "Building packages on `uname -n` in $buildvarpr in the background" echo "Building packages on `uname -n` in $buildvarpr in the background"
$pgmpath/dorubbuild "$srcdir" "$builddir" "$variant" "$skipbuilt" "$kopt" "$jobsopt" "$buildmake" "$conf" "$confopt" "$clean" "$bldtest" "$check" "$checktool" "$install" "$dist" "$distcheck" "$rpm" $pkgs >> /dev/null 2>&1 & $pgmpath/dorubbuild "$srcdir" "$builddir" "$variant" "$skipbuilt" "$kopt" "$jobsopt" "$buildmake" "$conf" "$confopt" "$clean" "$bldtest" "$check" "$checktool" "$memcheck" "$install" "$dist" "$distcheck" "$rpm" $pkgs >> /dev/null 2>&1 &
else else
echo "Building packages in $buildvarpr ..." echo "Building packages in $buildvarpr ..."
$pgmpath/dorubbuild "$srcdir" "$builddir" "$variant" "$skipbuilt" "$kopt" "$jobsopt" "$buildmake" "$conf" "$confopt" "$clean" "$bldtest" "$check" "$checktool" "$install" "$dist" "$distcheck" "$rpm" $pkgs $pgmpath/dorubbuild "$srcdir" "$builddir" "$variant" "$skipbuilt" "$kopt" "$jobsopt" "$buildmake" "$conf" "$confopt" "$clean" "$bldtest" "$check" "$checktool" "$memcheck" "$install" "$dist" "$distcheck" "$rpm" $pkgs
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment