Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
stack_tests.cpp
Go to the documentation of this file.
1// Generated by spec_test_generator. DO NOT MODIFY THIS FILE.
2
3#include <algorithm>
4#include <vector>
5#include <iostream>
6#include <iterator>
7#include <cmath>
8#include <cstdlib>
9#include <catch2/catch.hpp>
10#include <utils.hpp>
11#include <wasm_config.hpp>
12#include <sysio/vm/backend.hpp>
13
14using namespace sysio;
15using namespace sysio::vm;
16extern wasm_allocator wa;
17
18BACKEND_TEST_CASE( "Testing wasm <stack_0_wasm>", "[stack_0_wasm_tests]" ) {
20 auto code = read_wasm( std::string(wasm_directory) + "stack.0.wasm");
21 backend_t bkend( code, &wa );
22
23 CHECK(bkend.call_with_return("env", "fac-expr", UINT64_C(25))->to_ui64() == UINT32_C(7034535277573963776));
24 CHECK(bkend.call_with_return("env", "fac-stack", UINT64_C(25))->to_ui64() == UINT32_C(7034535277573963776));
25 CHECK(bkend.call_with_return("env", "fac-mixed", UINT64_C(25))->to_ui64() == UINT32_C(7034535277573963776));
26}
27
28BACKEND_TEST_CASE( "Testing wasm <stack_1_wasm>", "[stack_1_wasm_tests]" ) {
30 auto code = read_wasm( std::string(wasm_directory) + "stack.1.wasm");
31 backend_t bkend( code, &wa );
32
33}
34
auto call_with_return(host_t &host, const std::string_view &mod, const std::string_view &func, Args... args)
Definition backend.hpp:178
#define CHECK(cond)
Definition util.h:80
backend_t bkend(hello_wasm, ehm, &wa)
std::vector< uint8_t > read_wasm(const std::string &fname)
Definition utils.hpp:30
wasm_allocator wa
Definition main.cpp:10
#define UINT32_C(val)
Definition stdint.h:283
#define UINT64_C(val)
Definition stdint.h:284
#define BACKEND_TEST_CASE(name, tags)
Definition utils.hpp:59