aboutsummaryrefslogtreecommitdiff
path: root/tests/stxr_16.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-07-13 21:36:02 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-07-13 21:36:02 +0300
commit5e64dbec81504aaacac1e733edd5230f59670466 (patch)
tree904038fae0b1ceb43f3f9b9de9f843f5d059d068 /tests/stxr_16.c
parent26fcfcf333e852b256af8ed4ca7f9e497958f6d8 (diff)
downloadejit-5e64dbec81504aaacac1e733edd5230f59670466.tar.gz
ejit-5e64dbec81504aaacac1e733edd5230f59670466.zip
make tests only compile once
+ Select between jit/bytecode with a runtime parameter
Diffstat (limited to 'tests/stxr_16.c')
-rw-r--r--tests/stxr_16.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/stxr_16.c b/tests/stxr_16.c
index 865eda0..901f084 100644
--- a/tests/stxr_16.c
+++ b/tests/stxr_16.c
@@ -4,8 +4,10 @@
static uint16_t data[] = { 0x1212, 0x0000, 0x3434 };
-int main()
+int main(int argc, char *argv[])
{
+ (void)argv;
+ bool do_jit = argc > 1;
struct ejit_operand operands[3] = {
EJIT_OPERAND_GPR(0, EJIT_TYPE(void *)),
EJIT_OPERAND_GPR(1, EJIT_TYPE(int)),