Commit 87b1e1f4 authored by Lev Walkin's avatar Lev Walkin

comment

parent ed2710d7
This is a very funny test automation. The name of the check-*.c file is used This is a very funny test automation. The name of the check-N.c file is used
as a pointer to the file in ../..//tests/*-*.asn1. This file is compiled as a pointer to the file in ../../tests/N-*.asn1. This file is compiled
using the asn1c from above directory. Then, everything is build together using the asn1c compiler from above directory. Then, everything is build
in a temporary directory with a check-*.c used as a testing engine. together in a temporary directory with a check-N.c used as a testing engine.
/*
* This file checks that the output may be compiled by the C++ compiler.
*/
#undef NDEBUG
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <assert.h>
#include <VariablePart.h>
int
main() {
VariablePart_t t;
t.present = VariablePart_PR_vrange;
return 0;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment