summaryrefslogtreecommitdiff
path: root/dev-ada/libadalang/files/libadalang-2019-pyyaml.patch
blob: ad78d5af1f33855d72e19c9d8592819a00fe2a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/ada/testsuite/testsuite_support/polyfill.py	2020-03-26 20:52:45.678476467 +0100
+++ b/ada/testsuite/testsuite_support/polyfill.py	2020-03-26 20:53:13.612979979 +0100
@@ -368,7 +368,7 @@
         # First load data provided by this testcase
         try:
             with open(os.path.join(test_dir, 'test.yaml'), 'r') as f:
-                test_data = yaml.load(f)
+                test_data = yaml.safe_load(f)
         except (IOError, yaml.error.YAMLError) as exc:
             status = 'PROBLEM'
             message = 'Invalid test.yaml: {}'.format(exc)