Line data Source code
1 1 : /** 2 : * @file test/integration/integration_parallel_multi.c 3 : * 4 : * @brief Test: integration test of the parallel runtime with actual concurrency 5 : * 6 : * SPDX-FileCopyrightText: 2008-2021 HPDCS Group <rootsim@googlegroups.com> 7 : * SPDX-License-Identifier: GPL-3.0-only 8 : */ 9 : #include <test.h> 10 : 11 : #include <integration/model/application.h> 12 : 13 0 : static const char *test_arguments[] = { 14 : "--lp", 15 : "64", 16 : NULL 17 : }; 18 : 19 : const struct test_config test_config = { 20 : .test_arguments = test_arguments, 21 : .expected_output = model_expected_output_64, 22 : .expected_output_size = sizeof(model_expected_output_64) 23 : };