summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions-sab.js
blob: 5de73d9b1875c9b7f81229cc5799076305a5cbb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// |reftest| skip-if(!this.hasOwnProperty('SharedArrayBuffer')) -- SharedArrayBuffer is not enabled unconditionally
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-%typedarray%.prototype.set-typedarray-offset
description: >
  Set converted values from different buffer of different types and different type instances
includes: [byteConversionValues.js, testTypedArray.js]
features: [SharedArrayBuffer]
---*/

testTypedArrayConversions(byteConversionValues, function(TA, value, expected, initial) {
  if (TA === Float64Array || TA === Float32Array || TA === Uint8ClampedArray) {
    return;
  }
  if (TA === Int32Array) {
    return;
  }

  var sab, src, target;

  sab = new SharedArrayBuffer(4);
  src = new Int32Array(sab);
  src[0] = value;
  target = new TA([initial]);

  target.set(src);

  assert.sameValue(target[0], expected, "src is SAB-backed");

  sab = new SharedArrayBuffer(4);
  src = new Int32Array([value]);
  target = new TA(sab);
  target[0] = initial;

  target.set(src);

  assert.sameValue(target[0], expected, "target is SAB-backed");

  var sab1 = new SharedArrayBuffer(4);
  var sab2 = new SharedArrayBuffer(4);
  src = new Int32Array(sab1);
  src[0] = value;
  target = new TA(sab2);
  target[0] = initial;

  target.set(src);

  assert.sameValue(target[0], expected, "src and target are SAB-backed");
});

reportCompare(0, 0);