tenseleyflow/bencch / b3cf949

Browse files

Repoint runtime behavior consumers

Authored by espadonne
SHA
b3cf9495e9cdd428b058222ef9a4d2b4adafc306
Parents
df345ac
Tree
7074660

8 changed files

StatusFile+-
M README.md 1 1
M suites/frontend/parser.afs 1 1
M suites/ir/lowering.afs 1 1
M suites/opt/matrix.afs 1 1
M suites/runtime/arithmetic.afs 1 1
M suites/runtime/control_flow.afs 1 1
M suites/runtime/derived_types.afs 1 1
M suites/runtime/strings.afs 1 1
README.mdmodified
@@ -86,7 +86,7 @@ Suites are plain text files under `suites/`.
8686
 suite "consistency/runtime"
8787
 
8888
 case "mixed_types_cli_run_reproducible"
89
-source "../../../test_programs/mixed_types.f90"
89
+source "../../fixtures/runtime/mixed_types.f90"
9090
 opts => all
9191
 armfortas => run
9292
 repeat => 3
suites/frontend/parser.afsmodified
@@ -8,7 +8,7 @@ expect ast contains "ClassDefault"
88
 end
99
 
1010
 case "where_construct"
11
-source "../../../test_programs/where_construct.f90"
11
+source "../../fixtures/runtime/where_construct.f90"
1212
 armfortas => ast
1313
 expect ast contains "WhereConstruct"
1414
 expect ast contains "Deallocate"
suites/ir/lowering.afsmodified
@@ -28,7 +28,7 @@ expect optir contains "type_is_match_"
2828
 end
2929
 
3030
 case "where_construct_lowering"
31
-source "../../../test_programs/where_construct.f90"
31
+source "../../fixtures/runtime/where_construct.f90"
3232
 armfortas => ir, optir
3333
 expect ir contains "where_check_"
3434
 expect ir contains "call @afs_allocate_1d"
suites/opt/matrix.afsmodified
@@ -22,7 +22,7 @@ future when O1, O2, O3 because "Keep optimizer-sensitive SELECT TYPE cells visib
2222
 end
2323
 
2424
 case "where_construct_across_matrix"
25
-source "../../../test_programs/where_construct.f90"
25
+source "../../fixtures/runtime/where_construct.f90"
2626
 opts => O0, O1, O2
2727
 armfortas => ir, optir, run
2828
 expect ir contains "where_check_"
suites/runtime/arithmetic.afsmodified
@@ -8,7 +8,7 @@ expect run.exit_code equals 0
88
 end
99
 
1010
 case "mixed_types"
11
-source "../../../test_programs/mixed_types.f90"
11
+source "../../fixtures/runtime/mixed_types.f90"
1212
 armfortas => run
1313
 expect run.stdout check-comments
1414
 expect run.exit_code equals 0
suites/runtime/control_flow.afsmodified
@@ -88,7 +88,7 @@ expect run.exit_code equals 0
8888
 end
8989
 
9090
 case "where_construct"
91
-source "../../../test_programs/where_construct.f90"
91
+source "../../fixtures/runtime/where_construct.f90"
9292
 armfortas => run
9393
 expect run.stdout check-comments
9494
 expect run.exit_code equals 0
suites/runtime/derived_types.afsmodified
@@ -1,7 +1,7 @@
11
 suite "runtime/derived-types"
22
 
33
 case "derived_type_basic"
4
-source "../../../test_programs/derived_type_basic.f90"
4
+source "../../fixtures/runtime/derived_type_basic.f90"
55
 armfortas => run
66
 expect run.stdout check-comments
77
 expect run.exit_code equals 0
suites/runtime/strings.afsmodified
@@ -22,7 +22,7 @@ expect run.exit_code equals 0
2222
 end
2323
 
2424
 case "string_fixed"
25
-source "../../../test_programs/string_fixed.f90"
25
+source "../../fixtures/runtime/string_fixed.f90"
2626
 armfortas => run
2727
 expect run.stdout check-comments
2828
 expect run.exit_code equals 0