summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-04 03:57:54 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-12-04 03:57:54 +0000
commitfc1651ef0b7ccedc604b28d5893f5cd486cd4091 (patch)
tree3ea033abb546734a46b2e947756e0d9f792b0e80 /testing
parentReleasing debian version 2.15.0-1. (diff)
downloadpre-commit-fc1651ef0b7ccedc604b28d5893f5cd486cd4091.tar.xz
pre-commit-fc1651ef0b7ccedc604b28d5893f5cd486cd4091.zip
Merging upstream version 2.16.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing')
-rwxr-xr-xtesting/gen-languages-all2
-rwxr-xr-xtesting/make-archives2
-rwxr-xr-xtesting/zipapp/entry2
-rwxr-xr-xtesting/zipapp/make2
-rwxr-xr-xtesting/zipapp/python2
5 files changed, 5 insertions, 5 deletions
diff --git a/testing/gen-languages-all b/testing/gen-languages-all
index 51e4bce..c933c14 100755
--- a/testing/gen-languages-all
+++ b/testing/gen-languages-all
@@ -25,4 +25,4 @@ def main() -> int:
if __name__ == '__main__':
- exit(main())
+ raise SystemExit(main())
diff --git a/testing/make-archives b/testing/make-archives
index cb0b0a4..707fd88 100755
--- a/testing/make-archives
+++ b/testing/make-archives
@@ -80,4 +80,4 @@ def main(argv: Optional[Sequence[str]] = None) -> int:
if __name__ == '__main__':
- exit(main())
+ raise SystemExit(main())
diff --git a/testing/zipapp/entry b/testing/zipapp/entry
index f0a345e..87f9291 100755
--- a/testing/zipapp/entry
+++ b/testing/zipapp/entry
@@ -68,4 +68,4 @@ def main() -> int:
if __name__ == '__main__':
- exit(main())
+ raise SystemExit(main())
diff --git a/testing/zipapp/make b/testing/zipapp/make
index 8740b2f..55b6d2c 100755
--- a/testing/zipapp/make
+++ b/testing/zipapp/make
@@ -106,4 +106,4 @@ def main() -> int:
if __name__ == '__main__':
- exit(main())
+ raise SystemExit(main())
diff --git a/testing/zipapp/python b/testing/zipapp/python
index 97c5928..7184a1a 100755
--- a/testing/zipapp/python
+++ b/testing/zipapp/python
@@ -45,4 +45,4 @@ def main() -> int:
if __name__ == '__main__':
- exit(main())
+ raise SystemExit(main())