swig/Examples/test-suite/c/global_vars_runme.c
Vadim Zeitlin 75d9cb4769 Remove C-specific cpp_basic_global_var_built_in unit test
There is no need for it, the common global_vars unit test is more extensive
and passes too now.
2016-09-15 01:27:39 +02:00

12 lines
203 B
C

#include <assert.h>
#include "global_vars/global_vars_wrap.h"
int main(int argc, const char *argv[])
{
init();
assert(strcmp(b_get(), "string b") == 0);
assert(x == 1234);
return 0;
}