/* Copyright (C) 2019 Julian RĂ¼th This file is part of Arb. Arb is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (LGPL) as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. See . */ #include #include #include "arb.h" int main() { flint_rand_t state; slong iter; flint_printf("dump_file/load_file...."); fflush(stdout); flint_randinit(state); /* assume tmpfile() is broken on windows */ #if !defined(_MSC_VER) && !defined(__MINGW32__) /* just test no crashing... */ for (iter = 0; iter < 10000 * arb_test_multiplier(); iter++) { arf_t x; FILE* tmp; arf_init(x); arf_randtest_special(x, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100)); tmp = tmpfile(); arf_dump_file(tmp, x); fflush(tmp); rewind(tmp); arf_load_file(x, tmp); fclose(tmp); arf_clear(x); } for (iter = 0; iter < 100000 * arb_test_multiplier(); iter++) { arf_t x, y, z; int conversion_error; FILE* tmp; arf_init(x); arf_init(y); arf_init(z); arf_randtest_special(x, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100)); arf_randtest_special(y, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100)); arf_randtest_special(z, state, 1 + n_randint(state, 1000), 1 + n_randint(state, 100)); tmp = tmpfile(); arf_dump_file(tmp, x); fputc(' ', tmp); arf_dump_file(tmp, y); fflush(tmp); rewind(tmp); conversion_error = arf_load_file(z, tmp); if (conversion_error || !arf_equal(x, z)) { flint_printf("FAIL (roundtrip) iter = %wd\n", iter); flint_printf("x = "); arf_printd(x, 50); flint_printf("\n\n"); flint_printf("z = "); arf_printd(z, 50); flint_printf("\n\n"); flint_abort(); } conversion_error = arf_load_file(z, tmp); if (conversion_error || !arf_equal(y, z)) { flint_printf("FAIL (roundtrip) iter = %wd\n", iter); flint_printf("y = "); arf_printd(y, 50); flint_printf("\n\n"); flint_printf("z = "); arf_printd(z, 50); flint_printf("\n\n"); flint_abort(); } fclose(tmp); arf_clear(x); arf_clear(y); arf_clear(z); } #endif flint_randclear(state); flint_cleanup(); flint_printf("PASS\n"); return EXIT_SUCCESS; }