aboutsummaryrefslogtreecommitdiffstats
path: root/libasn1fix
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2016-03-14 03:36:35 -0700
committerLev Walkin <vlm@lionet.info>2016-03-14 03:36:35 -0700
commit9e66d16ab307c347b5357187bfaa0e4956781763 (patch)
treee0a49588bd34a0a9272b402f642ce90a920984f1 /libasn1fix
parent819c832b86aee1e5d6ecffc8263ebbfa53b88793 (diff)
infer skeletons level
Diffstat (limited to 'libasn1fix')
-rw-r--r--libasn1fix/check_fixer.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/libasn1fix/check_fixer.c b/libasn1fix/check_fixer.c
index 2041c437..18633241 100644
--- a/libasn1fix/check_fixer.c
+++ b/libasn1fix/check_fixer.c
@@ -21,7 +21,7 @@
#define TOP_SRCDIR_S STRINGIFY_MACRO(TOP_SRCDIR)
#endif
-static int check(const char *fname,
+static int check(int skeletons_hier_level, const char *fname,
enum asn1p_flags parser_flags,
enum asn1f_flags fixer_flags);
static int post_fix_check(asn1p_t *asn);
@@ -41,6 +41,7 @@ main(int ac, char **av) {
enum asn1p_flags parser_flags = A1P_NOFLAGS;
enum asn1f_flags fixer_flags = A1F_NOFLAGS;
const char *filename;
+ int skeletons_hier_level = 1;
size_t len;
int ret;
@@ -66,7 +67,10 @@ main(int ac, char **av) {
if(ret == -1)
fprintf(stderr, "%s: %s\n", asn1_tests_dir, strerror(errno));
assert(ret == 0);
- (void)chdir("tests"); /* For some reasons, tests could be hidden. */
+ /* For some reasons, tests could be hidden under extra tests dir. */
+ if(chdir("tests") == 0) {
+ skeletons_hier_level++;
+ }
#ifdef _WIN32
dir = _findfirst("*.asn1", &c_file);
assert(dir != -1L);
@@ -92,7 +96,7 @@ main(int ac, char **av) {
len = strlen(filename);
if(len <= 5 || strcmp(filename + len - 5, ".asn1"))
continue;
- ret = check(filename, parser_flags, fixer_flags);
+ ret = check(skeletons_hier_level, filename, parser_flags, fixer_flags);
if(ret) {
fprintf(stderr, "FAILED: %s\n",
filename);
@@ -117,7 +121,7 @@ main(int ac, char **av) {
} else {
int i;
for(i = 1; i < ac; i++) {
- ret = check(av[i], parser_flags, fixer_flags);
+ ret = check(skeletons_hier_level, av[i], parser_flags, fixer_flags);
if(ret) {
fprintf(stderr, "FAILED: %s\n", av[i]);
failed++;
@@ -137,7 +141,7 @@ main(int ac, char **av) {
}
static int
-check(const char *fname,
+check(int skeletons_hier_level, const char *fname,
enum asn1p_flags parser_flags,
enum asn1f_flags fixer_flags) {
asn1p_t *asn;
@@ -196,7 +200,10 @@ check(const char *fname,
if(r_value == 0) {
asn1p_t *std_asn;
- std_asn = asn1p_parse_file("../skeletons/standard-modules/ASN1C-UsefulInformationObjectClasses.asn1", A1P_NOFLAGS);
+ std_asn = asn1p_parse_file(skeletons_hier_level == 1
+ ? "../skeletons/standard-modules/ASN1C-UsefulInformationObjectClasses.asn1"
+ : "../../skeletons/standard-modules/ASN1C-UsefulInformationObjectClasses.asn1"
+ , A1P_NOFLAGS);
if(std_asn) {
asn1p_module_t *mod;
while((mod = TQ_REMOVE(&(std_asn->modules), mod_next))) {