We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c428ec commit d0201daCopy full SHA for d0201da
1 file changed
util/gnu-json-result.py
@@ -9,7 +9,16 @@
9
10
out = {}
11
12
+if len(sys.argv) != 2:
13
+ print("Usage: python gnu-json-result.py <gnu_test_directory>")
14
+ sys.exit(1)
15
+
16
test_dir = Path(sys.argv[1])
17
+if not test_dir.is_dir():
18
+ print(f"Directory {test_dir} does not exist.")
19
20
21
+# Test all the logs from the test execution
22
for filepath in test_dir.glob("**/*.log"):
23
path = Path(filepath)
24
current = out
0 commit comments