Commit 877f80df authored by lykos98's avatar lykos98
Browse files

corrected file test

parent aecabbb9
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -218,13 +218,13 @@ void simulate_master_read_and_scatter(int dims, size_t n, global_context_t *ctx)

    if(I_AM_MASTER && ctx -> world_size <= 6)
    {
        test_file_path(OUT_DATA);
        test_file_path(OUT_CLUSTER_ASSIGN);
        test_file_path(ctx -> output_data_file);
        test_file_path(ctx -> output_assignment_file);
    }
    else
    {
        test_distributed_file_path(ctx, OUT_DATA);
        test_distributed_file_path(ctx, OUT_CLUSTER_ASSIGN);
        test_distributed_file_path(ctx, ctx -> output_data_file);
        test_distributed_file_path(ctx, ctx -> output_assignment_file);
    }