@@ -695,12 +695,28 @@ utest::v1::status_t test_setup(const size_t number_of_cases)
695
695
}
696
696
697
697
Case cases[] = {
698
+ #ifdef DO_BIG_TEST
699
+ Case (" Testing callbacks with 0 uint64s" , test_dispatch0<uint64_t >),
700
+ Case (" Testing callbacks with 1 uint64s" , test_dispatch1<uint64_t >),
701
+ Case (" Testing callbacks with 2 uint64s" , test_dispatch2<uint64_t >),
702
+ Case (" Testing callbacks with 3 uint64s" , test_dispatch3<uint64_t >),
703
+ Case (" Testing callbacks with 4 uint64s" , test_dispatch4<uint64_t >),
704
+ Case (" Testing callbacks with 5 uint64s" , test_dispatch5<uint64_t >),
705
+ #elif DO_SMALL_TEST
706
+ Case (" Testing callbacks with 0 uchars" , test_dispatch0<unsigned char >),
707
+ Case (" Testing callbacks with 1 uchars" , test_dispatch1<unsigned char >),
708
+ Case (" Testing callbacks with 2 uchars" , test_dispatch2<unsigned char >),
709
+ Case (" Testing callbacks with 3 uchars" , test_dispatch3<unsigned char >),
710
+ Case (" Testing callbacks with 4 uchars" , test_dispatch4<unsigned char >),
711
+ Case (" Testing callbacks with 5 uchars" , test_dispatch5<unsigned char >),
712
+ #else
698
713
Case (" Testing callbacks with 0 ints" , test_dispatch0<int >),
699
714
Case (" Testing callbacks with 1 ints" , test_dispatch1<int >),
700
715
Case (" Testing callbacks with 2 ints" , test_dispatch2<int >),
701
716
Case (" Testing callbacks with 3 ints" , test_dispatch3<int >),
702
717
Case (" Testing callbacks with 4 ints" , test_dispatch4<int >),
703
718
Case (" Testing callbacks with 5 ints" , test_dispatch5<int >),
719
+ #endif
704
720
};
705
721
706
722
Specification specification (test_setup, cases);
0 commit comments