From 4f944e92dfbe781635619d63039198e4bb363376 Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Wed, 19 Nov 2025 16:42:48 -0500 Subject: [PATCH] [Suite] Renamed Test Suite Script The original script name does not reflect what the script actually does. Renamed the script to something better. --- README.md | 2 +- run_syntax_suite.py => run_suite.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename run_syntax_suite.py => run_suite.py (100%) diff --git a/README.md b/README.md index 8e15c0905..8aa6350be 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ tar -xvzf z1010_cad.tar.gz ```py # Run the benchmarks through the test suite. -python3 run_syntax_suite.py +python3 run_suite.py # The results are returned as a CSV file in a run directory. # Optional: These results can be visualized using the following script: diff --git a/run_syntax_suite.py b/run_suite.py similarity index 100% rename from run_syntax_suite.py rename to run_suite.py