summaryrefslogtreecommitdiff
path: root/dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch')
-rw-r--r--dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch b/dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch
new file mode 100644
index 000000000000..f451e707f40b
--- /dev/null
+++ b/dev-libs/aws-sdk-cpp/files/aws-sdk-cpp-upgrade_scripts_run_integration_tests_py-3.9.patch
@@ -0,0 +1,17 @@
+--- a/scripts/run_integration_tests.py (original)
++++ b/scripts/run_integration_tests.py (refactored)
+@@ -52,11 +52,11 @@
+ testExe = os.path.join(arguments[ "testDir" ], testName if testHasParentDir else "", testName) + exeExtension
+ # when build with BUILD_ONLY, not all test binaries will be generated.
+ if not os.path.isfile(testExe):
+- print("Test: \"{}\" doesn't exist, skipped.".format(testExe))
++ print(("Test: \"{}\" doesn't exist, skipped.".format(testExe)))
+ continue
+ prefix = "--aws_resource_prefix=" + platform.system().lower()
+- print("testExe = " + testExe)
+- print("prefix = " + prefix)
++ print(("testExe = " + testExe))
++ print(("prefix = " + prefix))
+ AddExecutableBit(testExe)
+ subprocess.check_call([testExe, prefix])
+