sov-kernel-monster / rtx /tests /host_include /sov_test_stubs.h
SNAPKITTYWEST's picture
chore: push full sov-kernel-monster content from local build
9425aed verified
Raw
History Blame Contribute Delete
323 Bytes
#pragma once
/* Host test stubs — no CUDA driver needed */
#include <stdio.h>
#include <string.h>
#define SOV_ASSERT(cond) do { \
if (!(cond)) { \
printf("FAIL %s:%d: %s\n", __FILE__, __LINE__, #cond); \
return 1; \
} \
} while(0)
#define SOV_PASS(name) printf("PASS %s\n", (name))