mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
13 lines
254 B
C++
13 lines
254 B
C++
/**
|
|
* @file test_marcos.hpp
|
|
*
|
|
* Helps with cmake testing.
|
|
*
|
|
* @author James Goppert <james.goppert@gmail.com>
|
|
*/
|
|
#pragma once
|
|
|
|
#include <cstdio>
|
|
|
|
#define TEST(X) if(!(X)) { fprintf(stderr, "test failed on %s:%d\n", __FILE__, __LINE__); return -1;}
|