Codebase list libcork / 83b6238
d/patches: Update 03 patch to ensure using system python3 Roger Shimizu 2 years ago
2 changed file(s) with 24 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
66 * debian/tests/upstream-test-suite:
77 - Ignore the error from dh_auto_configure. This will make
88 autopkgtest within pbuilder happy.
9 * debian/patches:
10 - Update 03 patch to ensure using system python3.
911
1012 -- Roger Shimizu <rosh@debian.org> Thu, 26 Aug 2021 03:05:04 +0900
1113
22 Subject: Use system python3-cram
33
44 ---
5 tests/CMakeLists.txt | 2 +-
6 tests/ccram | 2 +-
7 2 files changed, 2 insertions(+), 2 deletions(-)
5 tests/CMakeLists.txt | 3 +--
6 tests/ccram | 4 ++--
7 2 files changed, 3 insertions(+), 4 deletions(-)
88
99 diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
10 index afa2d3f..68f5483 100644
10 index afa2d3f..9a4cd46 100644
1111 --- a/tests/CMakeLists.txt
1212 +++ b/tests/CMakeLists.txt
1313 @@ -82,7 +82,7 @@ make_u128_suite(sub)
1919 endif (NOT CRAM_EXECUTABLE)
2020
2121 if (PYTHON_EXECUTABLE)
22 @@ -94,7 +94,6 @@ if (PYTHON_EXECUTABLE)
23 ${TEST_NAME}
24 ${CMAKE_COMMAND} -E chdir ${CMAKE_BINARY_DIR}
25 ${CMAKE_BINARY_DIR}/ccram
26 - --python ${PYTHON_EXECUTABLE}
27 --root ${CMAKE_SOURCE_DIR}
28 --build ${CMAKE_BINARY_DIR}/src
29 --cram ${CRAM_EXECUTABLE}
2230 diff --git a/tests/ccram b/tests/ccram
23 index 6eb3766..3446049 100755
31 index 6eb3766..7bee3e7 100755
2432 --- a/tests/ccram
2533 +++ b/tests/ccram
34 @@ -7,7 +7,7 @@ if [ "$1" = "--python" ]; then
35 PYTHON="$1"
36 shift
37 else
38 - PYTHON=python
39 + PYTHON=python3
40 fi
41
42 if [ "$1" = "--root" ]; then
2643 @@ -31,7 +31,7 @@ if [ "$1" = "--cram" ]; then
2744 CRAM="$1"
2845 shift