2017-02-07 17:17:31 +01:00
|
|
|
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
2017-07-26 23:49:55 +02:00
|
|
|
esid: sec-atomics.islockfree
|
2017-02-07 17:17:31 +01:00
|
|
|
description: >
|
|
|
|
Test isLockFree on various non-intuitive arguments
|
2018-03-20 00:51:32 +01:00
|
|
|
features: [Atomics]
|
2017-02-07 17:17:31 +01:00
|
|
|
---*/
|
|
|
|
|
2018-04-19 16:11:50 +02:00
|
|
|
assert.sameValue(Atomics.isLockFree(hide(3, Number.NaN)), false);
|
|
|
|
assert.sameValue(Atomics.isLockFree(hide(3, -1)), false);
|
|
|
|
assert.sameValue(Atomics.isLockFree(hide(3, 3.14)), false);
|
|
|
|
assert.sameValue(Atomics.isLockFree(hide(3, 0)), false);
|
2017-02-07 17:17:31 +01:00
|
|
|
|
|
|
|
assert.sameValue(Atomics.isLockFree('1'), Atomics.isLockFree(1));
|
|
|
|
assert.sameValue(Atomics.isLockFree('3'), Atomics.isLockFree(3));
|
|
|
|
|
|
|
|
assert.sameValue(Atomics.isLockFree(true), Atomics.isLockFree(1));
|
|
|
|
|
2018-02-09 18:09:47 +01:00
|
|
|
assert.sameValue(Atomics.isLockFree(1), Atomics.isLockFree({valueOf: () => 1}));
|
|
|
|
assert.sameValue(Atomics.isLockFree(3), Atomics.isLockFree({valueOf: () => 3}));
|
|
|
|
assert.sameValue(Atomics.isLockFree(1), Atomics.isLockFree({toString: () => '1'}));
|
|
|
|
assert.sameValue(Atomics.isLockFree(3), Atomics.isLockFree({toString: () => '3'}));
|
2017-02-07 17:17:31 +01:00
|
|
|
|
|
|
|
function hide(k, x) {
|
2018-04-19 16:11:50 +02:00
|
|
|
if (k) {
|
2018-02-15 21:26:13 +01:00
|
|
|
return hide(k - 3, x) + x;
|
2018-04-19 16:11:50 +02:00
|
|
|
}
|
2018-02-15 21:26:13 +01:00
|
|
|
return 0;
|
2017-02-07 17:17:31 +01:00
|
|
|
}
|