Chromium Code Reviews| Index: chrome/browser/printing/print_job_unittest.cc |
| diff --git a/chrome/browser/printing/print_job_unittest.cc b/chrome/browser/printing/print_job_unittest.cc |
| index 946669a56d28c5fb5b417e0c5c19107a626e6951..c93e07f78804b575a96ec0f2193e4491a4310277 100644 |
| --- a/chrome/browser/printing/print_job_unittest.cc |
| +++ b/chrome/browser/printing/print_job_unittest.cc |
| @@ -85,7 +85,13 @@ class TestPrintNotifObserv : public NotificationObserver { |
| typedef testing::Test PrintJobTest; |
| -TEST_F(PrintJobTest, SimplePrint) { |
| +// Crashes under Aura, see http://crbug.com/100340 |
| +#if defined(USE_AURA) |
|
sky
2011/10/14 20:05:06
Should this be and !OS_WIN?
|
| +#define MAYBE_SimplePrint DISABLED_SimplePrint |
| +#else |
| +#define MAYBE_SimplePrint SimplePrint |
| +#endif |
| +TEST_F(PrintJobTest, MAYBE_SimplePrint) { |
| // Test the multi-threaded nature of PrintJob to make sure we can use it with |
| // known lifetime. |