diff options
author | Michael Vogt <mvo@debian.org> | 2014-06-12 08:44:13 +0200 |
---|---|---|
committer | Michael Vogt <mvo@debian.org> | 2014-06-12 08:44:13 +0200 |
commit | 826c5fa7b541e93928791470e5df9342cb7db5ed (patch) | |
tree | 80dbc4356344653e80beeb03e51a6b5eb6e50e01 /test/integration/framework | |
parent | b2cde5777fd9ab41d1b9fe5ce91196c0d3e8227d (diff) | |
parent | acea28d0a3a55c4df1390c42288043002610fbc9 (diff) |
Merge remote-tracking branch 'mvo/feature/apt-ftparchive-srccache2' into ubuntu/trusty
Diffstat (limited to 'test/integration/framework')
-rw-r--r-- | test/integration/framework | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/integration/framework b/test/integration/framework index 3b900a960..eda3cebad 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -128,7 +128,10 @@ dpkgcheckbuilddeps() { } gdb() { echo "gdb: run »$*«" - APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${LIBRARYPATH} command gdb ${BUILDDIRECTORY}/$1 --args "$@" + CMD="$1" + shift + + APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${LIBRARYPATH} command gdb ${BUILDDIRECTORY}/$CMD --args ${BUILDDIRECTORY}/$CMD "$@" } gpg() { # see apt-key for the whole trickery. Setup is done in setupenvironment |