summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ctypes/cast.js
blob: c483d3793fa2aedd00977ad04824bcaff60ac519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
load(libdir + 'asserts.js');

function test() {
  assertTypeErrorMessage(() => { ctypes.cast(ctypes.int32_t(0), ctypes.StructType("foo")); },
                         "target type foo has undefined size");

  assertTypeErrorMessage(() => { ctypes.cast(ctypes.int32_t(0), ctypes.StructType("foo", [ { x: ctypes.int32_t }, { y: ctypes.int32_t } ])); },
                         "target type foo has larger size than source type ctypes.int32_t (8 > 4)");
}

if (typeof ctypes === "object")
  test();