Files
wren/script
Bob Nystrom f940f2d9d2 fix: use BENCHMARK_DIR constant for baseline file path in read and write operations
The baseline file path was hardcoded as "benchmark/baseline.txt" in both read_baseline() and generate_baseline() functions, ignoring the BENCHMARK_DIR constant. This caused the baseline file to be created in the wrong directory when BENCHMARK_DIR differed from the default "benchmark" path. Changed both functions to construct the path using os.path.join(BENCHMARK_DIR, "baseline.txt") for consistency and correctness.
2015-02-25 03:49:29 +00:00
..