aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/src/SpecTestsuites/Core/MemoryRedundancyTest.php
blob: 5f365259f6e4548b73aa77ea8770fe35e242f6ea (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php

declare(strict_types=1);

namespace Nsfisis\Waddiwasi\Tests\SpecTestsuites\Core;

use Nsfisis\Waddiwasi\Tests\SpecTestsuites\SpecTestsuiteBase;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;

final class MemoryRedundancyTest extends SpecTestsuiteBase
{
    public function testModule0(): void
    {
        $this->runModuleCommand(
            filename: 'memory_redundancy.0.wasm',
            name: null,
            line: 5,
        );
    }

    public function testAssertReturn1(): void
    {
        $this->runAssertReturnCommand(
            action: ['type' => 'invoke', 'field' => 'test_store_to_load', 'args' => []],
            expected: [['type' => 'i32', 'value' => '128']],
            line: 59,
        );
    }

    public function testAction2(): void
    {
        $this->runActionCommand(
            action: ['type' => 'invoke', 'field' => 'zero_everything', 'args' => []],
            line: 60,
        );
    }

    public function testAssertReturn3(): void
    {
        $this->runAssertReturnCommand(
            action: ['type' => 'invoke', 'field' => 'test_redundant_load', 'args' => []],
            expected: [['type' => 'i32', 'value' => '128']],
            line: 61,
        );
    }

    public function testAction4(): void
    {
        $this->runActionCommand(
            action: ['type' => 'invoke', 'field' => 'zero_everything', 'args' => []],
            line: 62,
        );
    }

    public function testAssertReturn5(): void
    {
        $this->runAssertReturnCommand(
            action: ['type' => 'invoke', 'field' => 'test_dead_store', 'args' => []],
            expected: [['type' => 'f32', 'value' => '35']],
            line: 63,
        );
    }

    public function testAction6(): void
    {
        $this->runActionCommand(
            action: ['type' => 'invoke', 'field' => 'zero_everything', 'args' => []],
            line: 64,
        );
    }

    public function testAssertReturn7(): void
    {
        $this->runAssertReturnCommand(
            action: ['type' => 'invoke', 'field' => 'malloc_aliasing', 'args' => []],
            expected: [['type' => 'i32', 'value' => '43']],
            line: 65,
        );
    }
}