diff --git a/tests/aot/std-array/011.phpt b/tests/aot/std-array/011.phpt new file mode 100644 index 00000000..9a5453c1 --- /dev/null +++ b/tests/aot/std-array/011.phpt @@ -0,0 +1,15 @@ +--TEST-- +std array: unset +--FILE-- + +--EXPECT-- +int(99) +int(0) \ No newline at end of file diff --git a/tests/aot/std-map/009.phpt b/tests/aot/std-map/009.phpt new file mode 100644 index 00000000..1bd623ad --- /dev/null +++ b/tests/aot/std-map/009.phpt @@ -0,0 +1,24 @@ +--TEST-- +std map: unset +--FILE-- + +--EXPECT-- +array(2) { + ["alpha"]=> + int(10) + ["beta"]=> + int(20) +} +array(1) { + ["beta"]=> + int(20) +} \ No newline at end of file diff --git a/tests/aot/std-unordered-map/009.phpt b/tests/aot/std-unordered-map/009.phpt new file mode 100644 index 00000000..1373f449 --- /dev/null +++ b/tests/aot/std-unordered-map/009.phpt @@ -0,0 +1,24 @@ +--TEST-- +std unordered_map: unset +--FILE-- + +--EXPECT-- +array(2) { + ["beta"]=> + int(20) + ["alpha"]=> + int(10) +} +array(1) { + ["beta"]=> + int(20) +} \ No newline at end of file diff --git a/tests/aot/std-vector/012.phpt b/tests/aot/std-vector/012.phpt new file mode 100644 index 00000000..8e556bee --- /dev/null +++ b/tests/aot/std-vector/012.phpt @@ -0,0 +1,31 @@ +--TEST-- +std vector: unset +--FILE-- + +--EXPECT-- +array(3) { + [0]=> + int(99) + [1]=> + int(88) + [2]=> + int(77) +} +array(3) { + [0]=> + int(99) + [1]=> + int(0) + [2]=> + int(77) +} \ No newline at end of file