From 27c8eb84707b174bd837c7cf96c856169c45db50 Mon Sep 17 00:00:00 2001 From: Lukas Rothenberger Date: Thu, 20 Jun 2024 11:26:24 +0200 Subject: [PATCH] fix: add missing arguments --- test/do_all/backwards_array_access/test.py | 1 + test/do_all/calls/LULESH_proxy/test.py | 1 + test/do_all/calls/above_nesting_level_3/test.py | 1 + test/do_all/calls/allowing/test.py | 1 + test/do_all/calls/allowing_2/test.py | 1 + test/do_all/calls/preventing/simple/test.py | 1 + test/do_all/calls/second_order/allowing/test.py | 1 + test/do_all/calls/second_order/allowing_2/test.py | 1 + test/do_all/calls/second_order/preventing/test.py | 1 + test/do_all/calls/second_order/preventing_2/test.py | 1 + test/do_all/daxpy/test.py | 1 + test/do_all/negative/nested/OMPSCR/c_Mandelbrot/test.py | 1 + .../global_vars/miniFE_CSRMatrix_proxy/global_arrays/test.py | 1 + .../global_vars/miniFE_CSRMatrix_proxy/global_struct/test.py | 1 + .../global_vars/miniFE_CSRMatrix_proxy/global_vectors/test.py | 1 + .../miniFE_CSRMatrix_proxy/global_vectors_and_struct/test.py | 1 + test/do_all/simple/nested/depth_2/negative/test.py | 1 + .../simple/nested/depth_2/positive/both_loops_doall/test.py | 1 + .../simple/nested/depth_2/positive/inner_loop_doall/test.py | 1 + .../simple/nested/depth_2/positive/outer_loop_doall/test.py | 1 + test/do_all/simple/not_nested/negative/minimal/test.py | 1 + test/do_all/simple/not_nested/negative/stack_access/test.py | 1 + test/do_all/simple/not_nested/positive/test.py | 1 + test/do_all/stack_access/nested/positive/test.py | 1 + test/do_all/stack_access/various/case_0/test.py | 1 + test/do_all/stack_access/various/case_1/test.py | 1 + test/do_all/stack_access/various/case_2/test.py | 1 + test/do_all/stack_access/various/case_3/test.py | 1 + test/do_all/stack_access/various/case_4/test.py | 1 + test/do_all/stack_access/various/case_5/test.py | 1 + .../miniFE_CSRMatrix_proxy/access_outside_struct/test.py | 1 + .../positive/miniFE_CSRMatrix_proxy/std_data_types/test.py | 1 + .../positive/miniFE_CSRMatrix_proxy/template_data_types/test.py | 1 + .../loop_collapse/negative/outer_loop_doall_only/test.py | 1 + test/optimizer/loop_collapse/negative/simple_1/test.py | 1 + test/optimizer/loop_collapse/positive/simple_1/test.py | 1 + .../positive/nested/OMPSCR/c_Mandelbrot/test.py | 1 + 37 files changed, 37 insertions(+) diff --git a/test/do_all/backwards_array_access/test.py b/test/do_all/backwards_array_access/test.py index 736e815a8..9b49d9e0c 100644 --- a/test/do_all/backwards_array_access/test.py +++ b/test/do_all/backwards_array_access/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/LULESH_proxy/test.py b/test/do_all/calls/LULESH_proxy/test.py index acd126eea..2b5acc8fc 100644 --- a/test/do_all/calls/LULESH_proxy/test.py +++ b/test/do_all/calls/LULESH_proxy/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/above_nesting_level_3/test.py b/test/do_all/calls/above_nesting_level_3/test.py index 999c59d34..d11aac7fd 100644 --- a/test/do_all/calls/above_nesting_level_3/test.py +++ b/test/do_all/calls/above_nesting_level_3/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/allowing/test.py b/test/do_all/calls/allowing/test.py index bfc3afb53..c32e4b3f8 100644 --- a/test/do_all/calls/allowing/test.py +++ b/test/do_all/calls/allowing/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/allowing_2/test.py b/test/do_all/calls/allowing_2/test.py index 1419ca8e3..3bad81fc8 100644 --- a/test/do_all/calls/allowing_2/test.py +++ b/test/do_all/calls/allowing_2/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/preventing/simple/test.py b/test/do_all/calls/preventing/simple/test.py index ed4dc841a..72a524fca 100644 --- a/test/do_all/calls/preventing/simple/test.py +++ b/test/do_all/calls/preventing/simple/test.py @@ -20,6 +20,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/second_order/allowing/test.py b/test/do_all/calls/second_order/allowing/test.py index bfc3afb53..c32e4b3f8 100644 --- a/test/do_all/calls/second_order/allowing/test.py +++ b/test/do_all/calls/second_order/allowing/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/second_order/allowing_2/test.py b/test/do_all/calls/second_order/allowing_2/test.py index bfc3afb53..c32e4b3f8 100644 --- a/test/do_all/calls/second_order/allowing_2/test.py +++ b/test/do_all/calls/second_order/allowing_2/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/second_order/preventing/test.py b/test/do_all/calls/second_order/preventing/test.py index ed4dc841a..72a524fca 100644 --- a/test/do_all/calls/second_order/preventing/test.py +++ b/test/do_all/calls/second_order/preventing/test.py @@ -20,6 +20,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/calls/second_order/preventing_2/test.py b/test/do_all/calls/second_order/preventing_2/test.py index ed4dc841a..72a524fca 100644 --- a/test/do_all/calls/second_order/preventing_2/test.py +++ b/test/do_all/calls/second_order/preventing_2/test.py @@ -20,6 +20,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/daxpy/test.py b/test/do_all/daxpy/test.py index df0fd81b2..27c8cb42a 100644 --- a/test/do_all/daxpy/test.py +++ b/test/do_all/daxpy/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/negative/nested/OMPSCR/c_Mandelbrot/test.py b/test/do_all/negative/nested/OMPSCR/c_Mandelbrot/test.py index f948a67e3..e81ffe275 100644 --- a/test/do_all/negative/nested/OMPSCR/c_Mandelbrot/test.py +++ b/test/do_all/negative/nested/OMPSCR/c_Mandelbrot/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_arrays/test.py b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_arrays/test.py index 41d5dd67b..90f26614f 100644 --- a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_arrays/test.py +++ b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_arrays/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_struct/test.py b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_struct/test.py index 6ca056be8..9ac06cc0e 100644 --- a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_struct/test.py +++ b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_struct/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors/test.py b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors/test.py index 6ca056be8..9ac06cc0e 100644 --- a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors/test.py +++ b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors_and_struct/test.py b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors_and_struct/test.py index 6ca056be8..9ac06cc0e 100644 --- a/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors_and_struct/test.py +++ b/test/do_all/simple/global_vars/miniFE_CSRMatrix_proxy/global_vectors_and_struct/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/nested/depth_2/negative/test.py b/test/do_all/simple/nested/depth_2/negative/test.py index 970ce22a8..984b230cd 100644 --- a/test/do_all/simple/nested/depth_2/negative/test.py +++ b/test/do_all/simple/nested/depth_2/negative/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/nested/depth_2/positive/both_loops_doall/test.py b/test/do_all/simple/nested/depth_2/positive/both_loops_doall/test.py index 2337b56b0..f44777578 100644 --- a/test/do_all/simple/nested/depth_2/positive/both_loops_doall/test.py +++ b/test/do_all/simple/nested/depth_2/positive/both_loops_doall/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/nested/depth_2/positive/inner_loop_doall/test.py b/test/do_all/simple/nested/depth_2/positive/inner_loop_doall/test.py index a2a587cbd..8f5d8a95b 100644 --- a/test/do_all/simple/nested/depth_2/positive/inner_loop_doall/test.py +++ b/test/do_all/simple/nested/depth_2/positive/inner_loop_doall/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/nested/depth_2/positive/outer_loop_doall/test.py b/test/do_all/simple/nested/depth_2/positive/outer_loop_doall/test.py index 0c422d254..446df6b11 100644 --- a/test/do_all/simple/nested/depth_2/positive/outer_loop_doall/test.py +++ b/test/do_all/simple/nested/depth_2/positive/outer_loop_doall/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/not_nested/negative/minimal/test.py b/test/do_all/simple/not_nested/negative/minimal/test.py index ed4dc841a..72a524fca 100644 --- a/test/do_all/simple/not_nested/negative/minimal/test.py +++ b/test/do_all/simple/not_nested/negative/minimal/test.py @@ -20,6 +20,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/not_nested/negative/stack_access/test.py b/test/do_all/simple/not_nested/negative/stack_access/test.py index 72be26480..88d261028 100644 --- a/test/do_all/simple/not_nested/negative/stack_access/test.py +++ b/test/do_all/simple/not_nested/negative/stack_access/test.py @@ -20,6 +20,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/simple/not_nested/positive/test.py b/test/do_all/simple/not_nested/positive/test.py index f4cc6232c..c38f26d39 100644 --- a/test/do_all/simple/not_nested/positive/test.py +++ b/test/do_all/simple/not_nested/positive/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/nested/positive/test.py b/test/do_all/stack_access/nested/positive/test.py index 975dfeb9f..8579f87cb 100644 --- a/test/do_all/stack_access/nested/positive/test.py +++ b/test/do_all/stack_access/nested/positive/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_0/test.py b/test/do_all/stack_access/various/case_0/test.py index bfc3afb53..c32e4b3f8 100644 --- a/test/do_all/stack_access/various/case_0/test.py +++ b/test/do_all/stack_access/various/case_0/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_1/test.py b/test/do_all/stack_access/various/case_1/test.py index 2f1e09285..ee32eda09 100644 --- a/test/do_all/stack_access/various/case_1/test.py +++ b/test/do_all/stack_access/various/case_1/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_2/test.py b/test/do_all/stack_access/various/case_2/test.py index bfc3afb53..c32e4b3f8 100644 --- a/test/do_all/stack_access/various/case_2/test.py +++ b/test/do_all/stack_access/various/case_2/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_3/test.py b/test/do_all/stack_access/various/case_3/test.py index 1419ca8e3..3bad81fc8 100644 --- a/test/do_all/stack_access/various/case_3/test.py +++ b/test/do_all/stack_access/various/case_3/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_4/test.py b/test/do_all/stack_access/various/case_4/test.py index 2f1e09285..ee32eda09 100644 --- a/test/do_all/stack_access/various/case_4/test.py +++ b/test/do_all/stack_access/various/case_4/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/stack_access/various/case_5/test.py b/test/do_all/stack_access/various/case_5/test.py index 9c61dd76f..6eebd577b 100644 --- a/test/do_all/stack_access/various/case_5/test.py +++ b/test/do_all/stack_access/various/case_5/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/access_outside_struct/test.py b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/access_outside_struct/test.py index b32822e57..af9cf5fa5 100644 --- a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/access_outside_struct/test.py +++ b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/access_outside_struct/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/std_data_types/test.py b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/std_data_types/test.py index 6ca056be8..9ac06cc0e 100644 --- a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/std_data_types/test.py +++ b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/std_data_types/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/template_data_types/test.py b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/template_data_types/test.py index 7c8eea68a..51b03296f 100644 --- a/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/template_data_types/test.py +++ b/test/do_all/struct/positive/miniFE_CSRMatrix_proxy/template_data_types/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/optimizer/loop_collapse/negative/outer_loop_doall_only/test.py b/test/optimizer/loop_collapse/negative/outer_loop_doall_only/test.py index 64e4d6b57..96532cf9d 100644 --- a/test/optimizer/loop_collapse/negative/outer_loop_doall_only/test.py +++ b/test/optimizer/loop_collapse/negative/outer_loop_doall_only/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/optimizer/loop_collapse/negative/simple_1/test.py b/test/optimizer/loop_collapse/negative/simple_1/test.py index 64e4d6b57..96532cf9d 100644 --- a/test/optimizer/loop_collapse/negative/simple_1/test.py +++ b/test/optimizer/loop_collapse/negative/simple_1/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/optimizer/loop_collapse/positive/simple_1/test.py b/test/optimizer/loop_collapse/positive/simple_1/test.py index a5c931de5..67be2c441 100644 --- a/test/optimizer/loop_collapse/positive/simple_1/test.py +++ b/test/optimizer/loop_collapse/positive/simple_1/test.py @@ -19,6 +19,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) ) diff --git a/test/reduction_pattern/positive/nested/OMPSCR/c_Mandelbrot/test.py b/test/reduction_pattern/positive/nested/OMPSCR/c_Mandelbrot/test.py index 36e2b2e17..7f127483f 100644 --- a/test/reduction_pattern/positive/nested/OMPSCR/c_Mandelbrot/test.py +++ b/test/reduction_pattern/positive/nested/OMPSCR/c_Mandelbrot/test.py @@ -21,6 +21,7 @@ def test(self): return_dp_build_dir=True, return_dp_source_dir=False, return_llvm_bin_dir=False, + return_full_config=False, return_version_string=False, ) )