From 5e64dbec81504aaacac1e733edd5230f59670466 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 13 Jul 2024 21:36:02 +0300 Subject: make tests only compile once + Select between jit/bytecode with a runtime parameter --- tests/ldi_i32.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/ldi_i32.c') diff --git a/tests/ldi_i32.c b/tests/ldi_i32.c index 60eee1a..c8ecbc4 100644 --- a/tests/ldi_i32.c +++ b/tests/ldi_i32.c @@ -2,8 +2,10 @@ #include #include "do_jit.h" -int main() +int main(int argc, char *argv[]) { + (void)argv; + bool do_jit = argc > 1; static uint32_t data[] = { 0xffffffff, 0x00000000, 0x42424242 }; struct ejit_func *f = ejit_create_func(EJIT_TYPE(unsigned long), 0, -- cgit v1.2.3