Skip to content

Commit

Permalink
Only disable test on OS X. Refs #5304
Browse files Browse the repository at this point in the history
A test that was disabled everywhere was accidentally reenabled in
f70a161. This commit enables it for everything
except OS X until it is fixed on that platform.
  • Loading branch information
martyngigg committed Jun 11, 2012
1 parent a6f8565 commit cafbd2e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ class IkedaCarpenterPVTest : public CxxTest::TestSuite
// here tries to fit an IC peak to a Gaussian mock data peak
void testAgainstMockData()
{
// Needs fixing on OS X, but keep alive for other platforms so we know if it fails for some other reason
#ifndef __APPLE__

Fit alg2;
TS_ASSERT_THROWS_NOTHING(alg2.initialize());
TS_ASSERT( alg2.isInitialized() );
Expand Down Expand Up @@ -203,6 +206,7 @@ class IkedaCarpenterPVTest : public CxxTest::TestSuite
TS_ASSERT( categories[0] == "Peak" );

AnalysisDataService::Instance().remove(wsName);
#endif
}


Expand Down

0 comments on commit cafbd2e

Please sign in to comment.