Skip to content

Commit

Permalink
Revert 172261
Browse files Browse the repository at this point in the history
> PPAPI: Convert FileIO tests to new style & test background threads
> 
> BUG=92909
> 
> 
> Review URL: https://chromiumcodereview.appspot.com/11421137

This fails consistently on the Linux debug test bot (see bug 92909 for details).

TBR=dmichael@chromium.org
BUG=92909
Review URL: https://codereview.chromium.org/11458005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@172286 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
battre@chromium.org committed Dec 11, 2012
1 parent e67d217 commit 7878436
Show file tree
Hide file tree
Showing 6 changed files with 714 additions and 472 deletions.
7 changes: 3 additions & 4 deletions ppapi/tests/test_case.h
Original file line number Diff line number Diff line change
Expand Up @@ -319,10 +319,9 @@ class TestCaseFactory {
// Helper macros for checking values in tests, and returning a location
// description of the test fails.
#define ASSERT_TRUE(cmd) \
do { \
if (!(cmd)) \
return MakeFailureMessage(__FILE__, __LINE__, #cmd); \
} while (false)
if (!(cmd)) { \
return MakeFailureMessage(__FILE__, __LINE__, #cmd); \
}
#define ASSERT_FALSE(cmd) ASSERT_TRUE(!(cmd))
#define ASSERT_EQ(a, b) ASSERT_TRUE((a) == (b))
#define ASSERT_NE(a, b) ASSERT_TRUE((a) != (b))
Expand Down
Loading

0 comments on commit 7878436

Please sign in to comment.