Return-Path: X-Original-To: apmail-buildr-commits-archive@www.apache.org Delivered-To: apmail-buildr-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 41F809E2D for ; Sun, 7 Oct 2012 01:22:50 +0000 (UTC) Received: (qmail 81651 invoked by uid 500); 7 Oct 2012 01:22:50 -0000 Delivered-To: apmail-buildr-commits-archive@buildr.apache.org Received: (qmail 81627 invoked by uid 500); 7 Oct 2012 01:22:50 -0000 Mailing-List: contact commits-help@buildr.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@buildr.apache.org Delivered-To: mailing list commits@buildr.apache.org Received: (qmail 81620 invoked by uid 99); 7 Oct 2012 01:22:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Oct 2012 01:22:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 07 Oct 2012 01:22:48 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2A863238896F for ; Sun, 7 Oct 2012 01:22:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1395201 - /buildr/trunk/spec/java/bdd_spec.rb Date: Sun, 07 Oct 2012 01:22:04 -0000 To: commits@buildr.apache.org From: donaldp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121007012204.2A863238896F@eris.apache.org> Author: donaldp Date: Sun Oct 7 01:22:03 2012 New Revision: 1395201 URL: http://svn.apache.org/viewvc?rev=1395201&view=rev Log: Mark two tests as pending due to persistent problems when run as part of a suite but that run fine individually Modified: buildr/trunk/spec/java/bdd_spec.rb Modified: buildr/trunk/spec/java/bdd_spec.rb URL: http://svn.apache.org/viewvc/buildr/trunk/spec/java/bdd_spec.rb?rev=1395201&r1=1395200&r2=1395201&view=diff ============================================================================== --- buildr/trunk/spec/java/bdd_spec.rb (original) +++ buildr/trunk/spec/java/bdd_spec.rb Sun Oct 7 01:22:03 2012 @@ -31,7 +31,7 @@ describe Buildr::RSpec do # This test fails on the CI machine if the spec is run as part of a suite but not if run individually # This seems to indicate that there is interaction with some other test but until that other test is # identified the test has been marked as pending on the ci box - pending "Unable to determine why it fails on the CI machine so disabling" if `hostname` == "vesta.apache.org\n" + pending "Unable to determine why it fails on the CI machine so disabling" if ENV['JOB_NAME'] write('src/spec/ruby/success_spec.rb', 'describe("success") { it("is true") { nil.should be_nil } }') project('foo').test.invoke @@ -42,7 +42,7 @@ describe Buildr::RSpec do # This test fails on the CI machine if the spec is run as part of a suite but not if run individually # This seems to indicate that there is interaction with some other test but until that other test is # identified the test has been marked as pending on the ci box - pending "Unable to determine why it fails on the CI machine so disabling" if `hostname` == "vesta.apache.org\n" + pending "Unable to determine why it fails on the CI machine so disabling" if ENV['JOB_NAME'] success = File.expand_path('src/spec/ruby/success_spec.rb') write(success, 'describe("success") { it("is true") { nil.should be_nil } }') failure = File.expand_path('src/spec/ruby/failure_spec.rb')