From dbdf89d0069fae57ee3d74b63232be6aafb65ee4 Mon Sep 17 00:00:00 2001 From: teqwve Date: Sun, 1 Dec 2024 10:52:25 +0100 Subject: [PATCH 1/2] Use archive.debian.org for building boxes Packages used in boxes have fall out of ftp.debian.org. Co-Authored-By: wolf480@interia.pl --- boxes/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boxes/utils.sh b/boxes/utils.sh index dfd0518..6c84457 100644 --- a/boxes/utils.sh +++ b/boxes/utils.sh @@ -15,7 +15,7 @@ clean_box() { } extract_deb() { - repo="http://ftp.debian.org/debian/pool/main" + repo="http://archive.debian.org/debian/pool/main" path="$1" dpkg=`basename "$path"` From a4197ea9ffc1b1af5ec164e9e5d86c47018cd973 Mon Sep 17 00:00:00 2001 From: teqwve Date: Sun, 1 Dec 2024 00:00:37 +0100 Subject: [PATCH 2/2] Use unittest for running tests Switch to unittest as nose has been depracated for a while and it's not really used here, unittest is more than enough. --- test/CMakeLists.txt | 2 +- test/testsuits/main.py | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) delete mode 100755 test/testsuits/main.py diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6ff71ce..a0a549e 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -4,7 +4,7 @@ ADD_TEST( NAME python COMMAND - bash -c "SIO2JAIL_BUILD_PATH='${CMAKE_BINARY_DIR}' '${CMAKE_SOURCE_DIR}/test/testsuits/main.py' -v" + bash -c "SIO2JAIL_BUILD_PATH='${CMAKE_BINARY_DIR}' python3 -m unittest discover -s '${CMAKE_SOURCE_DIR}/test/testsuits/' -v" WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}" ) diff --git a/test/testsuits/main.py b/test/testsuits/main.py deleted file mode 100755 index 70d2725..0000000 --- a/test/testsuits/main.py +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env python3 - -import nose - -nose.main()