tests: add handling for rx arch

empty define for this architecture use for testing.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2025-05-07 19:38:06 -04:00 committed by Benjamin Cabé
commit edc9142f50

View file

@ -48,6 +48,8 @@ static inline void timestamp_serialize(void)
#define timestamp_serialize() #define timestamp_serialize()
#elif defined(CONFIG_MIPS) #elif defined(CONFIG_MIPS)
#define timestamp_serialize() #define timestamp_serialize()
#elif defined(CONFIG_RX)
#define timestamp_serialize()
#else #else
#error implementation of timestamp_serialize() not provided for your CPU target #error implementation of timestamp_serialize() not provided for your CPU target
#endif #endif