From 5e64dbec81504aaacac1e733edd5230f59670466 Mon Sep 17 00:00:00 2001
From: Kimplul <kimi.h.kuparinen@gmail.com>
Date: Sat, 13 Jul 2024 21:36:02 +0300
Subject: make tests only compile once

+ Select between jit/bytecode with a runtime parameter
---
 tests/eqr.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'tests/eqr.c')

diff --git a/tests/eqr.c b/tests/eqr.c
index 7b8067e..bda0908 100644
--- a/tests/eqr.c
+++ b/tests/eqr.c
@@ -2,8 +2,10 @@
 #include <assert.h>
 #include "do_jit.h"
 
-int main()
+int main(int argc, char *argv[])
 {
+	(void)argv;
+	bool do_jit = argc > 1;
 	struct ejit_operand operands[2] = {
 		EJIT_OPERAND_GPR(0, EJIT_TYPE(long)),
 		EJIT_OPERAND_GPR(1, EJIT_TYPE(long))
-- 
cgit v1.2.3