Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 78F1A17ED2 for ; Tue, 7 Apr 2015 19:34:54 +0000 (UTC) Received: (qmail 83194 invoked by uid 500); 7 Apr 2015 19:34:54 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 83175 invoked by uid 500); 7 Apr 2015 19:34:54 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 83165 invoked by uid 99); 7 Apr 2015 19:34:54 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Apr 2015 19:34:54 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id F3DD3AC00B4 for ; Tue, 7 Apr 2015 19:34:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1671929 - /qpid/dispatch/trunk/bin/test.sh Date: Tue, 07 Apr 2015 19:34:53 -0000 To: commits@qpid.apache.org From: kgiusti@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150407193453.F3DD3AC00B4@hades.apache.org> Author: kgiusti Date: Tue Apr 7 19:34:53 2015 New Revision: 1671929 URL: http://svn.apache.org/r1671929 Log: NO-JIRA: allow extra cmake parameters to test.sh Run the full ctest test suite before attempting to install. Modified: qpid/dispatch/trunk/bin/test.sh Modified: qpid/dispatch/trunk/bin/test.sh URL: http://svn.apache.org/viewvc/qpid/dispatch/trunk/bin/test.sh?rev=1671929&r1=1671928&r2=1671929&view=diff ============================================================================== --- qpid/dispatch/trunk/bin/test.sh (original) +++ qpid/dispatch/trunk/bin/test.sh Tue Apr 7 19:34:53 2015 @@ -34,11 +34,10 @@ rm -rf $INSTALL_DIR mkdir $BUILD_DIR cd $BUILD_DIR -cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR -DCMAKE_BUILD_TYPE=Debug $SOURCE_DIR +cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR -DCMAKE_BUILD_TYPE=Debug ${DISPATCH_CMAKE_EXTRA_ARGS} $SOURCE_DIR make -j4 -make install -cd tests -# Run unit tests on the build. -ctest -VV -E system_tests +# Test the build. +ctest -VV # Run system tests on the install. +make install python $INSTALL_DIR/lib/qpid-dispatch/tests/run_system_tests.py --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org