Add test_assert

This commit is contained in:
Shockwave 2024-02-04 07:48:22 +08:00
parent 9a06e1f363
commit 59e75c0f77
2 changed files with 10 additions and 1 deletions

View File

@ -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;
}