diff options
Diffstat (limited to 'test-suite/standalone/test-round.c')
-rw-r--r-- | test-suite/standalone/test-round.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test-suite/standalone/test-round.c b/test-suite/standalone/test-round.c index c594d5812..a3928d26b 100644 --- a/test-suite/standalone/test-round.c +++ b/test-suite/standalone/test-round.c @@ -113,10 +113,15 @@ test_scm_c_round () } } +static void +tests (void *data, int argc, char **argv) +{ + test_scm_c_round (); +} + int main (int argc, char *argv[]) { - scm_init_guile(); - test_scm_c_round (); + scm_boot_guile (argc, argv, tests, NULL); return 0; } |