| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 #include "v8.h" | 32 #include "v8.h" |
| 33 | 33 |
| 34 #include "platform.h" | 34 #include "platform.h" |
| 35 #include "cctest.h" | 35 #include "cctest.h" |
| 36 | 36 |
| 37 | 37 |
| 38 using namespace ::v8::internal; | 38 using namespace ::v8::internal; |
| 39 | 39 |
| 40 | 40 |
| 41 // Simple test of locking logic | |
| 42 TEST(Simple) { | |
| 43 Mutex* mutex = OS::CreateMutex(); | |
| 44 CHECK_EQ(0, mutex->Lock()); // acquire the lock with the right token | |
| 45 CHECK_EQ(0, mutex->Unlock()); // can unlock with the right token | |
| 46 delete mutex; | |
| 47 } | |
| 48 | |
| 49 | |
| 50 TEST(MultiLock) { | |
| 51 Mutex* mutex = OS::CreateMutex(); | |
| 52 CHECK_EQ(0, mutex->Lock()); | |
| 53 CHECK_EQ(0, mutex->Unlock()); | |
| 54 delete mutex; | |
| 55 } | |
| 56 | |
| 57 | |
| 58 TEST(ShallowLock) { | |
| 59 Mutex* mutex = OS::CreateMutex(); | |
| 60 CHECK_EQ(0, mutex->Lock()); | |
| 61 CHECK_EQ(0, mutex->Unlock()); | |
| 62 CHECK_EQ(0, mutex->Lock()); | |
| 63 CHECK_EQ(0, mutex->Unlock()); | |
| 64 delete mutex; | |
| 65 } | |
| 66 | |
| 67 | |
| 68 TEST(SemaphoreTimeout) { | 41 TEST(SemaphoreTimeout) { |
| 69 bool ok; | 42 bool ok; |
| 70 Semaphore* sem = OS::CreateSemaphore(0); | 43 Semaphore* sem = OS::CreateSemaphore(0); |
| 71 | 44 |
| 72 // Semaphore not signalled - timeout. | 45 // Semaphore not signalled - timeout. |
| 73 ok = sem->Wait(0); | 46 ok = sem->Wait(0); |
| 74 CHECK(!ok); | 47 CHECK(!ok); |
| 75 ok = sem->Wait(100); | 48 ok = sem->Wait(100); |
| 76 CHECK(!ok); | 49 CHECK(!ok); |
| 77 ok = sem->Wait(1000); | 50 ok = sem->Wait(1000); |
| 78 CHECK(!ok); | 51 CHECK(!ok); |
| 79 | 52 |
| 80 // Semaphore signalled - no timeout. | 53 // Semaphore signalled - no timeout. |
| 81 sem->Signal(); | 54 sem->Signal(); |
| 82 ok = sem->Wait(0); | 55 ok = sem->Wait(0); |
| 83 sem->Signal(); | 56 sem->Signal(); |
| 84 ok = sem->Wait(100); | 57 ok = sem->Wait(100); |
| 85 sem->Signal(); | 58 sem->Signal(); |
| 86 ok = sem->Wait(1000); | 59 ok = sem->Wait(1000); |
| 87 CHECK(ok); | 60 CHECK(ok); |
| 88 delete sem; | 61 delete sem; |
| 89 } | 62 } |
| OLD | NEW |