Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Tweak regressions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Jun 9, 2013
1 parent ffd973f commit a710ead
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/lz4-encrypt-test
Expand Up @@ -10,7 +10,7 @@ JobName=lz4Test
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lz4-test
Expand Up @@ -10,7 +10,7 @@ JobName=lz4
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lz4hc-encrypt-test
Expand Up @@ -12,7 +12,7 @@ scripts/cleanup
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lz4hc-test
Expand Up @@ -10,7 +10,7 @@ JobName=lz4hc
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lzfast-encrypt-test
Expand Up @@ -10,7 +10,7 @@ JobName=lzfastTest
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lzfast-test
Expand Up @@ -10,7 +10,7 @@ JobName=lzfast
#
# See if library is linked against libfastlz
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c libfastlz`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c libfastlz`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for fastlz compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lzo-encrypt-test
Expand Up @@ -10,7 +10,7 @@ JobName=LZOTest
#
# See if library is linked against liblzo2
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c liblzo2`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c liblzo2`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for lzo2 compression"
exit 0
Expand Down
2 changes: 1 addition & 1 deletion tests/lzo-test
Expand Up @@ -10,7 +10,7 @@ JobName=lzo
#
# See if library is linked against liblzo2
#
cnt=`ldd ${cwd}/bin/libbareos.so 2>/dev/null | grep -c liblzo2`
cnt=`ldd ${bin}/libbareos.so 2>/dev/null | grep -c liblzo2`
if test ${cnt} -lt 1; then
echo "$TestName skipped: not linked for lzo2 compression"
exit 0
Expand Down

0 comments on commit a710ead

Please sign in to comment.