Let's enable validation of examples. failures should trip errors.

Also make them verbose so we can see what is going on.
This commit is contained in:
Mark VanderVoord
2024-04-02 18:44:35 -04:00
parent 93e2f528cc
commit 9cc8fb5302
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ ${BUILD_DIR}/main: ${SRC_DIR}/main.c ${SRC_DIR}/foo.c
${CC} $< -o $@
run:
./build/main || true
./build/main
test: setup
+1 -1
View File
@@ -13,5 +13,5 @@ void test_foo_init_should_initialize_multiplier()
{
foo_init();
TEST_ASSERT_FALSE(1);
TEST_ASSERT_FALSE(0);
}