Add test_assert
This commit is contained in:
parent
9a06e1f363
commit
59e75c0f77
|
@ -0,0 +1,9 @@
|
|||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
assert(1 > 0);
|
||||
/* stop running */
|
||||
assert(1 < 0);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue