Compare commits

...

2 Commits

Author SHA1 Message Date
Jake Goodwin aaa2a2d16a Changed the included directories
- Removed the uneeded include of the `/usr/include/c++/11/` directory
2024-10-01 17:22:08 -07:00
Jake Goodwin 03e9cf49d6 Added flags
The flags for colored and verbose output have been added to the script.
2024-10-01 17:21:37 -07:00
2 changed files with 1 additions and 2 deletions

View File

@ -53,7 +53,6 @@ if (UNIT_TESTING)
include_directories( include_directories(
${CPPUTEST_INCLUDE_DIRS} ${CPPUTEST_INCLUDE_DIRS}
/usr/include/c++/11/
./inc ./inc
./mocks ./mocks
) )

View File

@ -192,7 +192,7 @@ run_c_tests () {
format_source_code format_source_code
clear_cmake_cache clear_cmake_cache
cmake -DUNIT_TESTING=ON -DCMAKE_VERBOSE_MAKEFILE=${CMAKE_VERBOSE} ../ cmake -DUNIT_TESTING=ON -DCMAKE_VERBOSE_MAKEFILE=${CMAKE_VERBOSE} ../
make AllTests && ./tests/AllTests make AllTests && ./tests/AllTests -v -c
} }
print_menu () { print_menu () {