From b56537daad32e05818b978d8756c808a466429b7 Mon Sep 17 00:00:00 2001 From: Michael Ernst Date: Sun, 28 Apr 2024 14:18:25 -0700 Subject: [PATCH] Change `results-small` to `results/small` (#274) --- .gitignore | 1 - README.md | 14 +++++++------- test/check_equal_csv.py | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index fc941b758b..282a71e677 100644 --- a/.gitignore +++ b/.gitignore @@ -35,7 +35,6 @@ cache-machines/ test/tmp1.txt test/tmp2.txt test/small-goal-files/result-without-times.txt -results-small/result-without-times.txt # Compiled class file *.class diff --git a/README.md b/README.md index 8c462025bc..5e307971a1 100644 --- a/README.md +++ b/README.md @@ -65,17 +65,17 @@ make small-test ``` This runs the entire code on two small repos. -The output data appears in `results-small/`. +The output data appears in `results/small/`. -* `results-small/result.csv`: the final result +* `results/small/result.csv`: the final result -* `results-small/merges/` contains all the merges. +* `results/small/merges/` contains all the merges. -* `results-small/merges_compared/` contains all merges and indicates whether the merge results are different and thus need to be analyzed. +* `results/small/merges_compared/` contains all merges and indicates whether the merge results are different and thus need to be analyzed. -* `results-small/merges_tested/` contains all merges that have been tested. +* `results/small/merges_tested/` contains all merges that have been tested. -* `results-small/result.csv` contains the final result. +* `results/small/result.csv` contains the final result. ### Perform full analysis @@ -207,6 +207,6 @@ To run style checking run `make style`. * results/ -> Contains all the results for the full analysis. -* results-small/ -> Contains all the results for the small analysis. +* results/small/ -> Contains all the results for the small analysis. * jars/ -> Location for the IntelliMerge and Spork jars. diff --git a/test/check_equal_csv.py b/test/check_equal_csv.py index 37cf421241..46ab7be41c 100755 --- a/test/check_equal_csv.py +++ b/test/check_equal_csv.py @@ -21,7 +21,7 @@ def remove_run_time(df): "--actual_folder", type=str, help="Path to actual folder", - default="results-small", + default="results/small", ) parser.add_argument( "--goal_folder",