diff options
author | Nikolai Kondrashov <Nikolai.Kondrashov@redhat.com> | 2014-09-17 15:37:41 +0300 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2014-09-22 10:22:27 +0200 |
commit | b7a17cb7d498ce6f1f8b385ae2c442c6a19a8986 (patch) | |
tree | 123aac827d6843901dc474bfc021c8b57381ab28 /contrib/ci | |
parent | dc35906fbb45898b5c362f3f3a3db5b914f1ed08 (diff) | |
download | sssd-b7a17cb7d498ce6f1f8b385ae2c442c6a19a8986.tar.gz sssd-b7a17cb7d498ce6f1f8b385ae2c442c6a19a8986.tar.xz sssd-b7a17cb7d498ce6f1f8b385ae2c442c6a19a8986.zip |
CI: Enforce Valgrind check
Add check for Valgrind test result to contrib/ci/run.
Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
Diffstat (limited to 'contrib/ci')
-rwxr-xr-x | contrib/ci/run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ci/run b/contrib/ci/run index 68ec1aab4..a9603195e 100755 --- a/contrib/ci/run +++ b/contrib/ci/run @@ -197,7 +197,6 @@ function build_debug() # Not building "tests" due to https://fedorahosted.org/sssd/ticket/2350 stage make-tests make-check-wrap -j $CPU_NUM check -- true - # Ignored until issues found by Valgrind are fixed status=0 CK_FORK=no \ stage make-check-valgrind \ @@ -214,6 +213,7 @@ function build_debug() --verbose || status=$? mv "$test_dir" ci-test-dir + ((status == 0)) if "$MODERATE"; then test_dir_distcheck=`mktemp --directory /dev/shm/ci-test-dir.XXXXXXXX` |