Big test data, to force reallocations

This commit is contained in:
Miguel M 2023-04-22 19:43:56 +01:00
parent eebca1914d
commit 79fa414c7d
2 changed files with 47 additions and 3 deletions

View File

@ -1,4 +1,47 @@
3
1 1 -1
555 0.9 2
-55 2 1555
-55 2 1555
4 6 9
548 210 127
0 560 186
158 38 975
873 377 665
103 535 531
101 741 950
385 641 463
861 459 991
287 430 146
557 652 529
775 965 617
243 671 96
503 453 224
748 552 546
459 606 237
477 489 969
868 704 980
944 202 840
745 346 658
946 867 66
1 1 -1
555 0.9 2
-55 2 1555
4 6 9
548 210 127
0 560 186
158 38 975
873 377 665
103 535 531
101 741 950
385 641 463
861 459 991
287 430 146
557 652 529
775 965 617
243 671 96
503 453 224
748 552 546
459 606 237
477 489 969
868 704 980
944 202 840

View File

@ -82,8 +82,9 @@ def clean():
@recipe(recipe_deps=[link],
conditions=[lambda: True],
info='Runs the main executable.')
info='Runs the main executable with the test matrix as input.')
def run():
sp.run(EXE_NAME)
with open(os.path.join(ROOT, 'data', 'test_mat.txt'), 'r') as test_input:
sp.run(os.path.join(ROOT, EXE_NAME), stdin=test_input)
sane_run(run)