Mercurial > vec
comparison test/main.c @ 3:3c5545b1568f
*: much better alignment support & tests
| author | Paper <paper@tflc.us> |
|---|---|
| date | Tue, 22 Oct 2024 23:27:15 -0400 |
| parents | f12b5dd4e18c |
| children | 75ab77f874e2 |
comparison
equal
deleted
inserted
replaced
| 2:f12b5dd4e18c | 3:3c5545b1568f |
|---|---|
| 86 DEFINE_PRINT_VECTOR_2(8, 16) | 86 DEFINE_PRINT_VECTOR_2(8, 16) |
| 87 DEFINE_PRINT_VECTOR_2(16, 8) | 87 DEFINE_PRINT_VECTOR_2(16, 8) |
| 88 DEFINE_PRINT_VECTOR_2(32, 4) | 88 DEFINE_PRINT_VECTOR_2(32, 4) |
| 89 DEFINE_PRINT_VECTOR_2(64, 2) | 89 DEFINE_PRINT_VECTOR_2(64, 2) |
| 90 | 90 |
| 91 #include "test_align.h" | |
| 91 #include "test_arith.h" | 92 #include "test_arith.h" |
| 92 #include "test_compare.h" | 93 #include "test_compare.h" |
| 93 | 94 |
| 94 int main(void) | 95 int main(void) |
| 95 { | 96 { |
| 96 int ret = 0; | 97 int ret = 0; |
| 97 | 98 |
| 99 ret |= test_align(); | |
| 98 ret |= test_arith(); | 100 ret |= test_arith(); |
| 99 ret |= test_compare(); | 101 ret |= test_compare(); |
| 100 | 102 |
| 101 return ret; | 103 return ret; |
| 102 } | 104 } |
