Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 1 | From ddbefd80d74c3baaae328332458db447e1666240 Mon Sep 17 00:00:00 2001 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Thu, 27 Apr 2017 16:37:24 +0300 |
| 4 | Subject: [PATCH] Move python helper scripts (used only in tests) to Python 3 |
| 5 | |
| 6 | Upstream-Status: Pending |
| 7 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 8 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 9 | --- |
| 10 | tests/gpt-header-move | 2 +- |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 11 | tests/msdos-overlap | 2 +- |
| 12 | 2 files changed, 2 insertions(+), 2 deletions(-) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 13 | |
| 14 | diff --git a/tests/gpt-header-move b/tests/gpt-header-move |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 15 | index 3dda5cb..a2b9508 100755 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 16 | --- a/tests/gpt-header-move |
| 17 | +++ b/tests/gpt-header-move |
| 18 | @@ -1,4 +1,4 @@ |
| 19 | -#!/usr/bin/python |
| 20 | +#!/usr/bin/env python3 |
| 21 | |
| 22 | # open img file, subtract 33 from altlba address, and move the last 33 sectors |
| 23 | # back by 33 sectors |
| 24 | diff --git a/tests/msdos-overlap b/tests/msdos-overlap |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 25 | index d6ae8d6..2c6747b 100755 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 26 | --- a/tests/msdos-overlap |
| 27 | +++ b/tests/msdos-overlap |
| 28 | @@ -1,4 +1,4 @@ |
| 29 | -#!/usr/bin/python |
| 30 | +#!/usr/bin/env python3 |
| 31 | """ |
| 32 | Write an overlapping partition to a msdos disk |
| 33 | |