OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 25025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
25036 LocalContext env; | 25036 LocalContext env; |
25037 | 25037 |
25038 FutexInterruptionThread timeout_thread(isolate); | 25038 FutexInterruptionThread timeout_thread(isolate); |
25039 | 25039 |
25040 v8::TryCatch try_catch(CcTest::isolate()); | 25040 v8::TryCatch try_catch(CcTest::isolate()); |
25041 timeout_thread.Start(); | 25041 timeout_thread.Start(); |
25042 | 25042 |
25043 CompileRun( | 25043 CompileRun( |
25044 "var ab = new SharedArrayBuffer(4);" | 25044 "var ab = new SharedArrayBuffer(4);" |
25045 "var i32a = new Int32Array(ab);" | 25045 "var i32a = new Int32Array(ab);" |
25046 "Atomics.futexWait(i32a, 0, 0);"); | 25046 "Atomics.wait(i32a, 0, 0);"); |
25047 CHECK(try_catch.HasTerminated()); | 25047 CHECK(try_catch.HasTerminated()); |
25048 timeout_thread.Join(); | 25048 timeout_thread.Join(); |
25049 } | 25049 } |
25050 | 25050 |
25051 | 25051 |
25052 TEST(EstimatedContextSize) { | 25052 TEST(EstimatedContextSize) { |
25053 v8::Isolate* isolate = CcTest::isolate(); | 25053 v8::Isolate* isolate = CcTest::isolate(); |
25054 v8::HandleScope scope(isolate); | 25054 v8::HandleScope scope(isolate); |
25055 LocalContext env; | 25055 LocalContext env; |
25056 CHECK(50000 < env->EstimatedSize()); | 25056 CHECK(50000 < env->EstimatedSize()); |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
25412 | 25412 |
25413 // Put the function into context1 and call it. Since the access check | 25413 // Put the function into context1 and call it. Since the access check |
25414 // callback always returns true, the call succeeds even though the tokens | 25414 // callback always returns true, the call succeeds even though the tokens |
25415 // are different. | 25415 // are different. |
25416 context1->Enter(); | 25416 context1->Enter(); |
25417 context1->Global()->Set(context1, v8_str("fun"), fun).FromJust(); | 25417 context1->Global()->Set(context1, v8_str("fun"), fun).FromJust(); |
25418 v8::Local<v8::Value> x_value = CompileRun("fun('x')"); | 25418 v8::Local<v8::Value> x_value = CompileRun("fun('x')"); |
25419 CHECK_EQ(42, x_value->Int32Value(context1).FromJust()); | 25419 CHECK_EQ(42, x_value->Int32Value(context1).FromJust()); |
25420 context1->Exit(); | 25420 context1->Exit(); |
25421 } | 25421 } |
OLD | NEW |