summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ctypes/incompatible-finalizer.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/ctypes/incompatible-finalizer.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/ctypes/incompatible-finalizer.js')
-rw-r--r--js/src/jit-test/tests/ctypes/incompatible-finalizer.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ctypes/incompatible-finalizer.js b/js/src/jit-test/tests/ctypes/incompatible-finalizer.js
new file mode 100644
index 0000000000..b4b0dab7f4
--- /dev/null
+++ b/js/src/jit-test/tests/ctypes/incompatible-finalizer.js
@@ -0,0 +1,26 @@
+load(libdir + 'asserts.js');
+
+function test() {
+ let fin = ctypes.CDataFinalizer(ctypes.int32_t(0), ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [ctypes.int32_t]).ptr(x => x));
+ if (fin.toSource) {
+ assertTypeErrorMessage(() => { fin.toSource.call(1); },
+ "CDataFinalizer.prototype.toSource called on incompatible object, got the number 1");
+ }
+ assertTypeErrorMessage(() => { fin.toString.call(1); },
+ "CDataFinalizer.prototype.toString called on incompatible object, got the number 1");
+ assertTypeErrorMessage(() => { fin.forget.call(1); },
+ "CDataFinalizer.prototype.forget called on incompatible object, got the number 1");
+ assertTypeErrorMessage(() => { fin.dispose.call(1); },
+ "CDataFinalizer.prototype.dispose called on incompatible object, got the number 1");
+ fin.forget();
+
+ assertTypeErrorMessage(() => { fin.readString(); },
+ "CDataFinalizer.prototype.readString called on empty CDataFinalizer");
+ assertTypeErrorMessage(() => { fin.dispose(); },
+ "CDataFinalizer.prototype.dispose called on empty CDataFinalizer");
+ assertTypeErrorMessage(() => { fin.forget(); },
+ "CDataFinalizer.prototype.forget called on empty CDataFinalizer");
+}
+
+if (typeof ctypes === "object")
+ test();