Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(211)

Side by Side Diff: test/cctest/test-lock.cc

Issue 4161005: Stop running some liveedit tests (see issue 915).... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // 2 //
3 // Tests of the TokenLock class from lock.h 3 // Tests of the TokenLock class from lock.h
4 4
5 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include "v8.h" 7 #include "v8.h"
8 8
9 #include "platform.h" 9 #include "platform.h"
10 #include "cctest.h" 10 #include "cctest.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 CHECK(!ok); 53 CHECK(!ok);
54 54
55 // Semaphore signalled - no timeout. 55 // Semaphore signalled - no timeout.
56 sem->Signal(); 56 sem->Signal();
57 ok = sem->Wait(0); 57 ok = sem->Wait(0);
58 sem->Signal(); 58 sem->Signal();
59 ok = sem->Wait(100); 59 ok = sem->Wait(100);
60 sem->Signal(); 60 sem->Signal();
61 ok = sem->Wait(1000); 61 ok = sem->Wait(1000);
62 CHECK(ok); 62 CHECK(ok);
63 delete sem;
63 } 64 }
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698