From eaae2a43a393222e8435c2f6a01ff2a064fb2b2d Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Wed, 3 Apr 2024 16:44:22 +0200 Subject: [PATCH] Use "GNU"/"BFS" in graph titles --- graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graph.py b/graph.py index a553138..30d60aa 100644 --- a/graph.py +++ b/graph.py @@ -29,9 +29,10 @@ df.plot(y="fail", color="gray", ax=ax, dashes=(2, 1)) df.plot(y="pass", color="green", ax=ax, dashes=(4, 1)) if "gnu" in sys.argv[1]: df.plot(y="error", color="orange", ax=ax, dashes=(6, 2)) -plt.title("Rust/findutils running other testsuites") plt.xticks(rotation=45) if "gnu" in sys.argv[1]: + plt.title("Rust/findutils running GNU testsuite") plt.savefig("gnu-results.png", dpi=199) else: + plt.title("Rust/findutils running BFS testsuite") plt.savefig("bfs-results.png", dpi=199)