Skip to content

Commit

Permalink
docs: recording Unity results
Browse files Browse the repository at this point in the history
  • Loading branch information
malachib committed Dec 9, 2024
1 parent 4490007 commit 7f79e2d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/rtos/esp32/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ These tests are all for variants of Espressif ESP32
| 29SEP23 | unity | ESP32-C3-DevKitM-1 | ESP32C3 | v5.1.1 | Pass |
| 19DEC23 | unity | WaveShare C6-DevKit | ESP32C6 | v5.1.2 | Pass |
| 18NOV23 | unity | ESP32C3 Xiao | ESP32C3 | v5.1.2 | Pass |
| 09DEC24 | unity | ESP32C3 Xiao | ESP32C6 | v5.3.2 | Fail | No unity output seen, though it feels like everything actually ran.
| 20JUL23 | unity | ESP32 Lolin Generic | ESP32 | v5.0.3 | Pass |
| 05MAR24 | unity | ESP-WROVER-KIT v4.1 | ESP32-WROVER-E | v5.1.2 | Pass |
| 29SEP23 | unity | Lilygo QT Pro | ESP32S3 | v5.1.1 | Pass* | Intermittent failures[^1]
| 16MAR24 | unity | Seeed Xiao | ESP32S3 | v5.1.3 | Pass |
| 19FEB24 | unity | ESP-WROVER-KIT v4.1 | ESP32-WROVER-E | v5.2.0 | Pass |
| 14APR24 | unity | UM FeatherS3 | ESP32S3 | v5.2.1 | Pass |
| 09DEC24 | unity | UM FeatherS3 | ESP32S3 | v5.3.2 | Pass |

[^1]: Fails on `test_std_system_clock`. Likely 18NOV23 commit repairs this

6 changes: 6 additions & 0 deletions test/rtos/esp32/unity/main/main.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
#include <esp_log.h>

#include "unity.h"

static const char* TAG = "unity::main";

extern "C" void app_main(void)
{
ESP_LOGV(TAG, "app_main: entry");

UNITY_BEGIN();
unity_run_all_tests();
UNITY_END();
Expand Down

0 comments on commit 7f79e2d

Please sign in to comment.