Files
CMake/Tests/GhsMulti/GhsMultiDuplicateSourceFilenames/main.c
Fred Baksik 5cef3c61fc GHS: Update test suite
-- Update test suite so that CMake can use multiple toolsets
       CMake_TEST_GreenHillsMULTI_config
       ghs_config_name
       ghs_target_arch
       ghs_tools
       ghs_toolset_name
       ghs_os_root
       ghs_os_dir
       ghs_target_platform
       ghs_bsp_name

-- Change ARM Integrity test to generic Integrity test
   Add Monolithic build test

-- Add other GHS generator tests
2019-01-16 10:41:03 -05:00

18 lines
230 B
C

int test_a(void);
int test_b(void);
int test_c(void);
int test_d(void);
int test_e(void);
int test_f(void);
int main(int argc, char* argv[])
{
test_a();
test_b();
test_c();
test_d();
test_e();
test_f();
return 0;
}