diff options
author | Carlos Maniero <carlosmaniero@gmail.com> | 2023-04-21 14:36:28 -0300 |
---|---|---|
committer | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-21 19:32:59 +0200 |
commit | 39315de738e86e1f1beb52ae14101b5caf7486a2 (patch) | |
tree | 8fe675255761e0a5cf8eab283e11d943d20d1f8f /test/integration_test.c | |
parent | 2b870752f767b8fecaf5ceb1dfe4d3366284a690 (diff) |
gas: Generate arithmetics expressions
We decided for using push and pop to simplify the implementation, we
want to revisit the approach latter.
Signed-off-by: Carlos Maniero <carlosmaniero@gmail.com>
Co-authored-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'test/integration_test.c')
-rw-r--r-- | test/integration_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration_test.c b/test/integration_test.c index a624f8c..0ef3f5d 100644 --- a/test/integration_test.c +++ b/test/integration_test.c @@ -46,6 +46,7 @@ test_examples(const MunitParameter params[], void *user_data_or_fixture) { assert_exit_status("../examples/main.pipa", 69); + assert_exit_status("../examples/arithmetics.pipa", 13); return MUNIT_OK; } |