Skip to content

Commit

Permalink
Disable LoadMD histo test on windows due to access failure. Refs #5320
Browse files Browse the repository at this point in the history
It will be diagnosed and turned back on.
  • Loading branch information
martyngigg committed May 17, 2012
1 parent ca09538 commit 109d58a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Code/Mantid/Framework/MDEvents/test/LoadMDTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -502,16 +502,22 @@ class LoadMDTest : public CxxTest::TestSuite
Poco::File(filename).remove();
}

void test_histo2()
void test_histo2()
{
// Fails on windows with file access error
#ifndef _WIN32
MDHistoWorkspace_sptr ws = MDEventsTestHelper::makeFakeMDHistoWorkspace(2.5, 2, 10, 10.0, 3.5, "histo2", 4.5);
doTestHisto(ws);
#endif
}

void test_histo3()
{
// Fails on windows with file access error
#ifndef _WIN32
MDHistoWorkspace_sptr ws = MDEventsTestHelper::makeFakeMDHistoWorkspace(2.5, 3, 4, 10.0, 3.5, "histo3", 4.5);
doTestHisto(ws);
#endif
}


Expand Down

0 comments on commit 109d58a

Please sign in to comment.