backend/tests: update resolved symbol names

according to new mangling scheme
This commit is contained in:
Svyatoslav Scherbina
2016-11-14 13:33:44 +07:00
parent cc4f0ca1a4
commit f389ebf687
21 changed files with 37 additions and 37 deletions
@@ -2,9 +2,9 @@ extern void *resolve_symbol(const char*);
int
run_test() {
int (*plus_eq)(int) = resolve_symbol("kfun:minus_eq");
int (*plus_eq)(int) = resolve_symbol("kfun:minus_eq(Int)");
if (plus_eq(23) != 12) return 1;
return 0;
}
}