Skip to content

Commit

Permalink
Disable AlgorithmProxy::isRunning test. Refs #5125
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Nov 10, 2012
1 parent 6bde42c commit 5240026
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Code/Mantid/Framework/API/test/AlgorithmProxyTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,12 @@ class AlgorithmProxyTest : public CxxTest::TestSuite
TS_ASSERT( alg->isInitialized() );
}

void testRunning()
/**
* Disabled due to random failures that cannot be pinned down and are most likely timing issues.
* This test has never failed legitimately and only serves to cause confusion when it fails
* due to completely unrelated changes.
*/
void xtestRunning()
{
IAlgorithm_sptr alg = AlgorithmManager::Instance().create("ToyAlgorithmProxy");
TS_ASSERT( dynamic_cast<AlgorithmProxy*>(alg.get()) );
Expand All @@ -162,6 +167,7 @@ class AlgorithmProxyTest : public CxxTest::TestSuite
TS_ASSERT( res.data() );
TS_ASSERT( alg->isExecuted() );
}

void testCancel()
{
IAlgorithm_sptr alg = AlgorithmManager::Instance().create("ToyAlgorithmProxy");
Expand Down

0 comments on commit 5240026

Please sign in to comment.